diff options
166 files changed, 44672 insertions, 16472 deletions
diff --git a/ansible/build_yardstick_image.yml b/ansible/build_yardstick_image.yml index 072c12c66..495a547bb 100644 --- a/ansible/build_yardstick_image.yml +++ b/ansible/build_yardstick_image.yml @@ -19,11 +19,13 @@ 'amd64': disk1 'arm64': uefi1 boot_mode: "{{ boot_modes[YARD_IMG_ARCH] }}" - image_filename: "{{ release }}-server-cloudimg-{{ YARD_IMG_ARCH }}-{{ boot_mode }}.img" - image_path: "{{ release }}/current/{{ image_filename }}" + image_filename: + 'xenial': "{{ release }}-server-cloudimg-{{ YARD_IMG_ARCH }}-{{ boot_mode }}.img" + 'bionic': "{{ release }}-server-cloudimg-{{ YARD_IMG_ARCH }}.img" + image_path: "{{ release }}/current/{{ image_filename[release] }}" host: "{{ lookup('env', 'HOST')|default('cloud-images.ubuntu.com', true)}}" image_url: "{{ lookup('env', 'IMAGE_URL')|default('https://' ~ host ~ '/' ~ image_path, true) }}" - image_dest: "{{ workspace }}/{{ image_filename }}" + image_dest: "{{ workspace }}/{{ image_filename[release] }}" sha256sums_path: "{{ release }}/current/SHA256SUMS" sha256sums_filename: "{{ sha256sums_path|basename }}" sha256sums_url: "{{ lookup('env', 'SHA256SUMS_URL')|default('https://' ~ host ~ '/' ~ sha256sums_path, true) }}" diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 596560508..0e8ad5bc5 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -1,9 +1,9 @@ ---
target_os: "Ubuntu"
YARD_IMG_ARCH: "amd64"
-IMG_PROPERTY: "normal"
+IMG_PROPERTY: "{{ IMAGE_PROPERTY | default('normal') }}"
clone_dest: /opt/tempT
-release: xenial
+release: "{{ OS_RELEASE | default('xenial') }}"
normal_image_file: "{{ workspace }}/yardstick-image.img"
nsb_image_file: "{{ workspace }}/yardstick-nsb-image.img"
ubuntu_image_file: /tmp/workspace/yardstick/yardstick-trusty-server.raw
diff --git a/ansible/install.yaml b/ansible/install.yaml index 0800ee534..d181c5ffd 100644 --- a/ansible/install.yaml +++ b/ansible/install.yaml @@ -21,7 +21,7 @@ pre_tasks: - - name: Create NSB binaries directory, accesible to any user + - name: Create NSB binaries directory, accessible to any user file: path: "{{ nsb_dir }}" state: directory @@ -31,15 +31,15 @@ - installation_mode != inst_mode_container_pull roles: - - { role: add_repos_jumphost, when: installation_mode != inst_mode_container_pull } - - { role: install_dependencies_jumphost, when: installation_mode != inst_mode_container_pull } + - add_repos_jumphost + - install_dependencies_jumphost - { role: install_yardstick, when: installation_mode != inst_mode_container_pull } - { role: configure_uwsgi, when: installation_mode != inst_mode_container_pull } - { role: configure_nginx, when: installation_mode != inst_mode_container_pull } - { role: configure_gui, when: installation_mode != inst_mode_container_pull } - { role: download_trex, when: installation_mode != inst_mode_container_pull } - { role: install_trex, when: installation_mode != inst_mode_container_pull } - - { role: configure_rabbitmq, when: installation_mode != inst_mode_container_pull } + - { role: configure_rabbitmq, when: installation_mode == inst_mode_baremetal } post_tasks: @@ -56,6 +56,8 @@ - name: Prepare baremetal and standalone servers hosts: yardstick-baremetal,yardstick-standalone become: yes + vars_files: + - roles/download_dpdk/defaults/main.yml environment: "{{ proxy_env }}" roles: @@ -63,21 +65,24 @@ - role: set_package_installer_proxy when: proxy_env is defined and proxy_env # can't update grub in chroot/docker - # ?? - enable_iommu_on_boot - enable_hugepages_on_boot + - enable_iommu_on_boot # needed for collectd plugins - increase_open_file_limits - install_image_dependencies - role: download_dpdk - # dpdk_version: "17.02" + dpdk_version: "{{ dpdk_version_for_PROX }}" + - role: install_dpdk + dpdk_version: "{{ dpdk_version_for_PROX }}" + - download_samplevnfs + - role: install_samplevnf + vnf_name: PROX + - download_dpdk - install_dpdk - download_trex - install_trex - download_civetweb - install_civetweb - - download_samplevnfs - - role: install_samplevnf - vnf_name: PROX - role: install_samplevnf vnf_name: UDP_Replay - role: install_samplevnf @@ -95,9 +100,12 @@ - install_pmu_tools - download_collectd - install_collectd + - docker + - barometer_collectd -- hosts: jumphost +- name: Prepare to build VM + hosts: jumphost become: yes vars: img_prop_item: "{{ IMG_PROPERTY }}" @@ -111,7 +119,8 @@ when: installation_mode != inst_mode_container -- hosts: chroot_image +- name: Build VM in chroot + hosts: chroot_image connection: chroot become: yes vars: @@ -126,7 +135,8 @@ when: installation_mode != inst_mode_container -- hosts: jumphost +- name: Clear up after VM is built + hosts: jumphost become: yes tasks: @@ -137,15 +147,33 @@ when: installation_mode != inst_mode_container -- name: start yardstick container on jumphost +- hosts: jumphost + vars_files: + - yardstick_config.yml + + roles: + - { role: convert_openrc, when: openrc_file is defined } + + +- name: Add OpenStack variables, image hosts: jumphost + vars_files: + - yardstick_config.yml + environment: + "{{ openrc }}" - tasks: - - include_role: - name: install_dependencies_jumphost - when: installation_mode == inst_mode_container_pull + roles: + - { role: clean_images, when: openrc_file is defined } + - { role: clean_flavors, when: openrc_file is defined } + - { role: create_samplevnfs_image, when: openrc_file is defined } - - include_role: + +- name: Start yardstick container on jumphost + hosts: jumphost + + tasks: + - name: Install docker needed to pull Yardstick container + include_role: name: docker when: installation_mode == inst_mode_container_pull diff --git a/ansible/library/fetch_url_and_verify.py b/ansible/library/fetch_url_and_verify.py index 6c5c0a8c2..13e8608b2 100644 --- a/ansible/library/fetch_url_and_verify.py +++ b/ansible/library/fetch_url_and_verify.py @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +# pylint: disable-all + DOCUMENTATION = ''' --- module: fetch_url_and_verify @@ -42,6 +44,7 @@ def main(): dest = params['dest'] sha256url = params['sha256url'] retries = params['retries'] + sha256line = '' image_dir, image_filename = os.path.split(dest) rc, stdout, stderr = module.run_command(['curl', '-sS', sha256url]) @@ -59,7 +62,7 @@ def main(): module.exit_json(changed=False, dest=dest, url=url, sha256sum=sha256sum) - for retry in range(retries): + for _ in range(retries): curl_rc, stdout, stderr = module.run_command( ['curl', '-sS', '-o', dest, url], cwd=image_dir) if curl_rc == 0: @@ -74,7 +77,7 @@ def main(): # <<INCLUDE_ANSIBLE_MODULE_COMMON>> -from ansible.module_utils.basic import * # noqa +from ansible.module_utils.basic import * if __name__ == '__main__': main() diff --git a/ansible/prepare_openstack.yml b/ansible/prepare_openstack.yml index 6f54ef522..c9067c9fb 100644 --- a/ansible/prepare_openstack.yml +++ b/ansible/prepare_openstack.yml @@ -23,7 +23,6 @@ include: build_yardstick_image.yml vars: YARD_IMG_ARCH: amd64 - release: xenial img_property: nsb - name: Cleanup old OpenStack images and upload the new one diff --git a/ansible/roles/add_repos_jumphost/tasks/Debian.yml b/ansible/roles/add_repos_jumphost/tasks/Debian.yml index 626f0b037..e15699617 100644 --- a/ansible/roles/add_repos_jumphost/tasks/Debian.yml +++ b/ansible/roles/add_repos_jumphost/tasks/Debian.yml @@ -71,7 +71,6 @@ deb [arch={{ extra_arch }}] {{ extra_repo }} {{ ansible_distribution_release }} main universe multiverse restricted deb [arch={{ extra_arch }}] {{ extra_repo }} {{ ansible_distribution_release }}-updates main universe multiverse restricted deb [arch={{ extra_arch }}] {{ extra_repo }} {{ ansible_distribution_release }}-security main universe multiverse restricted - deb [arch={{ extra_arch }}] {{ extra_repo }} {{ ansible_distribution_release }}-proposed main universe multiverse restricted when: installation_mode == "container" - name: Remove the marker diff --git a/ansible/roles/build_yardstick_image/tasks/cloudimg_modify_nsb.yml b/ansible/roles/build_yardstick_image/tasks/cloudimg_modify_nsb.yml index 9a70ff39a..c9e386346 100644 --- a/ansible/roles/build_yardstick_image/tasks/cloudimg_modify_nsb.yml +++ b/ansible/roles/build_yardstick_image/tasks/cloudimg_modify_nsb.yml @@ -52,14 +52,21 @@ - install_image_dependencies - enable_hugepages_on_boot # can't update grub in chroot/docker - increase_open_file_limits # needed for collectd plugins - - download_dpdk - - install_dpdk - download_trex - install_trex - - download_pktgen - - install_pktgen - download_civetweb - install_civetweb + loop_control: + loop_var: role_item + environment: "{{ proxy_env }}" + +- include_role: + name: "{{ role_item }}" + vars: + dpdk_version: "{{ dpdk_version_for_PROX }}" + with_items: + - download_dpdk + - install_dpdk - download_samplevnfs loop_control: loop_var: role_item @@ -68,6 +75,23 @@ - include_vars: roles/install_dpdk/defaults/main.yml when: INSTALL_BIN_PATH is undefined +- name: Install PROX + include_role: + name: install_samplevnf + vars: + vnf_name: PROX + +- include_role: + name: "{{ role_item }}" + with_items: + - download_dpdk + - install_dpdk + - download_pktgen + - install_pktgen + loop_control: + loop_var: role_item + environment: "{{ proxy_env }}" + - include_vars: roles/download_samplevnfs/defaults/main.yml when: samplevnf_dest is undefined - set_fact: @@ -75,7 +99,6 @@ - include_role: name: install_samplevnf with_items: - - PROX - UDP_Replay - ACL - FW diff --git a/ansible/roles/build_yardstick_image/vars/main.yml b/ansible/roles/build_yardstick_image/vars/main.yml index 6728e5afb..3d4054408 100644 --- a/ansible/roles/build_yardstick_image/vars/main.yml +++ b/ansible/roles/build_yardstick_image/vars/main.yml @@ -16,11 +16,13 @@ boot_modes: 'amd64': disk1
'arm64': uefi1
boot_mode: "{{ boot_modes[YARD_IMG_ARCH] }}"
-image_filename: "{{ release }}-server-cloudimg-{{ YARD_IMG_ARCH }}-{{ boot_mode }}.img"
-image_path: "{{ release }}/current/{{ image_filename }}"
+image_filename:
+ 'xenial': "{{ release }}-server-cloudimg-{{ YARD_IMG_ARCH }}-{{ boot_mode }}.img"
+ 'bionic': "{{ release }}-server-cloudimg-{{ YARD_IMG_ARCH }}.img"
+image_path: "{{ release }}/current/{{ image_filename[release] }}"
host: "{{ lookup('env', 'HOST')|default('cloud-images.ubuntu.com', true)}}"
image_url: "{{ lookup('env', 'IMAGE_URL')|default('https://' ~ host ~ '/' ~ image_path, true) }}"
-image_dest: "{{ workspace }}/{{ image_filename }}"
+image_dest: "{{ workspace }}/{{ image_filename[release] }}"
sha256sums_path: "{{ release }}/current/SHA256SUMS"
sha256sums_filename: "{{ sha256sums_path|basename }}"
sha256sums_url: "{{ lookup('env', 'SHA256SUMS_URL')|default('https://' ~ host ~ '/' ~ sha256sums_path, true) }}"
diff --git a/ansible/roles/configure_gui/tasks/main.yml b/ansible/roles/configure_gui/tasks/main.yml index 846a9cb47..665053ccf 100644 --- a/ansible/roles/configure_gui/tasks/main.yml +++ b/ansible/roles/configure_gui/tasks/main.yml @@ -27,6 +27,11 @@ state: directory recurse: yes +- name: Remove /etc/nginx/yardstick/gui/dist directory if it exists + file: + path: /etc/nginx/yardstick/gui/dist + state: absent + - name: Move dist to /etc/nginx/yardstick/gui shell: cmd: mv dist /etc/nginx/yardstick/gui diff --git a/ansible/roles/configure_rabbitmq/tasks/main.yml b/ansible/roles/configure_rabbitmq/tasks/main.yml index 4ff4222dc..3ad60c1ea 100644 --- a/ansible/roles/configure_rabbitmq/tasks/main.yml +++ b/ansible/roles/configure_rabbitmq/tasks/main.yml @@ -12,16 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. --- -- name: Create rabbitmq configuration - template: - src: rabbitmq.config.j2 - dest: /etc/rabbitmq/rabbitmq.config - -- name: Define user definitions file - template: - src: user_definitions.json.j2 - dest: /etc/rabbitmq/definitions.json - - name: Restart rabbitmq service: name: rabbitmq-server @@ -30,5 +20,11 @@ - name: rabbitmqctl start_app shell: rabbitmqctl start_app -- name: Enable management plugin - shell: rabbitmq-plugins enable rabbitmq_management +- name: Configure rabbitmq + rabbitmq_user: + user: yardstick + password: yardstick + configure_priv: .* + read_priv: .* + write_priv: .* + state: present diff --git a/ansible/roles/configure_rabbitmq/templates/rabbitmq.config.j2 b/ansible/roles/configure_rabbitmq/templates/rabbitmq.config.j2 deleted file mode 100644 index 8f07edf5c..000000000 --- a/ansible/roles/configure_rabbitmq/templates/rabbitmq.config.j2 +++ /dev/null @@ -1,5 +0,0 @@ - [
- {rabbitmq_management, [
- {load_definitions, "/etc/rabbitmq/definitions.json"}
- ]}
-].
\ No newline at end of file diff --git a/ansible/roles/configure_rabbitmq/templates/user_definitions.json.j2 b/ansible/roles/configure_rabbitmq/templates/user_definitions.json.j2 deleted file mode 100644 index 7c811f16d..000000000 --- a/ansible/roles/configure_rabbitmq/templates/user_definitions.json.j2 +++ /dev/null @@ -1,23 +0,0 @@ - {
- "users": [{
- "name": "yardstick",
- "password_hash": "XHp9fBOE3vjTEf7ktiUBHqefW2g=",
- "hashing_algorithm": "rabbit_password_hashing_sha256",
- "tags": ""
- }],
- "vhosts": [{
- "name": "/"
- }],
- "permissions": [{
- "user": "yardstick",
- "vhost": "/",
- "configure": ".*",
- "write": ".*",
- "read": ".*"
- }],
- "parameters": [],
- "policies": [],
- "queues": [],
- "exchanges": [],
- "bindings": []
-}
diff --git a/ansible/roles/download_dpdk/defaults/main.yml b/ansible/roles/download_dpdk/defaults/main.yml index 83711881b..b2d959eed 100644 --- a/ansible/roles/download_dpdk/defaults/main.yml +++ b/ansible/roles/download_dpdk/defaults/main.yml @@ -1,11 +1,11 @@ --- dpdk_version: "17.05" +dpdk_version_for_PROX: "18.11" dpdk_url: "http://fast.dpdk.org/rel/dpdk-{{ dpdk_version }}.tar.xz" dpdk_file: "{{ dpdk_url|basename }}" dpdk_unarchive: "{{ dpdk_file|regex_replace('[.]tar[.]xz$', '') }}" dpdk_dest: "{{ clone_dest }}/" -#NOTE(ralonsoh): DPDK > 17.02 are currently unsupported due to prox build issues dpdk_md5: "16.07.2": "md5:4922ea2ec935b64ff5c191fec53344a6" "16.11.7": "md5:c081d113dfd57633e3bc3ebc802691be" @@ -16,3 +16,4 @@ dpdk_md5: "17.11.3": "md5:68ca84ac878011acf44e75d33b46f55b" #unsupported "18.02.2": "md5:75ad6d39b513649744e49c9fcbbb9ca5" #unsupported "18.05": "md5:9fc86367cd9407ff6a8dfea56c4eddc4" #unsupported + "18.11": "md5:04b86f4a77f4f81a7fbd26467dd2ea9f" # Not supported by SampleVNFs except PROX diff --git a/ansible/roles/download_drivers/defaults/main.yml b/ansible/roles/download_drivers/defaults/main.yml index ab68a3c6d..bf1e48a23 100644 --- a/ansible/roles/download_drivers/defaults/main.yml +++ b/ansible/roles/download_drivers/defaults/main.yml @@ -12,10 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. --- -i40evf_version: "3.4.2" +i40evf_version: "3.5.13" i40evf_gzfile: "i40evf-{{ i40evf_version }}.tar.gz" i40evf_url: "https://netix.dl.sourceforge.net/project/e1000/i40evf%20stable/{{ i40evf_version }}/{{ i40evf_gzfile }}" i40evf_dest: "{{ clone_dest }}/" i40evf_path: "{{ i40evf_dest }}/{{ i40evf_gzfile|regex_replace('[.]tar[.]gz$', '') }}" i40evf_checksum: "3.4.2": "sha256:a8e2a722fb2f8ac874cb39545a331761841f1724830ff1581d2012dd37314645" + "3.5.13": "sha256:e57b95b694c8480b905e72ea13caac8714d6bb0c9eabe37cca655505b808f033"
\ No newline at end of file diff --git a/ansible/roles/download_samplevnfs/defaults/main.yml b/ansible/roles/download_samplevnfs/defaults/main.yml index 104f594f5..5ddc9f0f9 100644 --- a/ansible/roles/download_samplevnfs/defaults/main.yml +++ b/ansible/roles/download_samplevnfs/defaults/main.yml @@ -13,4 +13,4 @@ samplevnf_url: "https://git.opnfv.org/samplevnf" samplevnf_dest: "{{ clone_dest }}/samplevnf" -samplevnf_version: "3afd384b7e68a3cd29f4d2cdf39785f8441d0b6f" +samplevnf_version: "47123bfc1b3c0d0b01884aebbce1a3e09ad7ddb0" diff --git a/ansible/roles/enable_iommu_on_boot/tasks/main.yml b/ansible/roles/enable_iommu_on_boot/tasks/main.yml index 1b98a50b1..188b32915 100644 --- a/ansible/roles/enable_iommu_on_boot/tasks/main.yml +++ b/ansible/roles/enable_iommu_on_boot/tasks/main.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Intel Corporation +# Copyright (c) 2017-2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -22,51 +22,57 @@ iommu_boot_params: ' amd_iommu=on iommu=pt' when: hostvars[inventory_hostname]['ansible_system_vendor'] == "AuthenticAMD" -- name: Set facts for this role - set_fact: - hugepages_help_string: ' # added by hugepages role' - iommu_help_string: ', added by iommu role' - hugepages_params: " default_hugepagesz=1G hugepagesz=1G hugepages=8" - iommu_original_kernel_params: 'GRUB_CMDLINE_LINUX="\$GRUB_CMDLINE_LINUX{{ hugepages_params }}' - iommu_enabled_kernel_params: '{{ iommu_original_kernel_params }}{{ iommu_boot_params }}"' - iommu_enabled_kernel_params_with_help: '{{ iommu_original_kernel_params }}{{ iommu_boot_params }}"{{ hugepages_help_string }}{{ iommu_help_string }}' +- block: + - name: Define grub string for IOMMU + set_fact: + enable_iommu: 'GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX{{ iommu_boot_params }}' -- name: check if iommu is set by this role in /etc/default/grub - lineinfile: - path: /etc/default/grub - line: '{{ iommu_enabled_kernel_params_with_help }}' - #changed_when: no - check_mode: yes - register: is_mine_iommu_etc_grub - ignore_errors: True + - name: check if iommu is set by this role in {{ grub_file}} + lineinfile: + path: "{{ grub_file}}" + regexp: '{{ iommu_help_string }}' + line: '{{ iommu_help_string }}' + state: absent + check_mode: yes + register: is_nsb_iommu_role + ignore_errors: True -- name: check if iommu is set by someone else - command: "grep -o 'iommu' /etc/default/grub" - register: is_iommu - ignore_errors: True + - name: Check if IOMMU is set by someone else + lineinfile: + path: "{{ grub_file}}" + regexp: "_iommu=" + line: '{{ iommu_help_string }}' + state: absent + check_mode: yes + register: is_iommu + ignore_errors: True -- fail: - msg: "Iommu already set by someone else" - when: is_mine_iommu_etc_grub.changed == false and is_iommu.stdout != "" + - name: Send info that IOMMU is configured by someone else + debug: + msg: "INFO: NOT modified, IOMMU is already configured by someone." + when: + - not is_nsb_iommu_role.changed + - is_iommu.changed -- name: 'Configure iommu in /etc/default/grub' -# and /boot/grub/grub.cfg(when: ansible_distribution == "Ubuntu")' - lineinfile: - path: /etc/default/grub - regexp: '({{ iommu_original_kernel_params }})"{{ hugepages_help_string }}' - line: '\1{{ iommu_boot_params }}"{{ hugepages_help_string }}{{ iommu_help_string }}' - backrefs: yes - when: is_mine_iommu_etc_grub.changed == true + - name: Add IOMMU when it is not set + lineinfile: + path: "{{ grub_file }}" + regexp: "{{ iommu_help_string }}" + line: '{{ enable_iommu }}" {{ iommu_help_string }}' + when: + - not is_nsb_iommu_role.changed + - not is_iommu.changed -- name: find boot grub.cfg - find: - paths: /boot - file_type: file - patterns: 'grub*.cfg' - recurse: yes - register: grub_files + - name: find boot grub.cfg + find: + paths: /boot + file_type: file + patterns: 'grub*.cfg' + recurse: yes + register: grub_files -- include: manual_modify_grub.yml - # only tested on Ubuntu, kernel line is probably different on other distros - with_items: "{{ grub_files.files }}" - when: ansible_distribution == "Ubuntu" + - include: manual_modify_grub.yml + # only tested on Ubuntu, kernel line is probably different on other distros + with_items: "{{ grub_files.files }}" + when: ansible_distribution == "Ubuntu" + when: iommu_boot_params is defined diff --git a/ansible/roles/enable_iommu_on_boot/tasks/manual_modify_grub.yml b/ansible/roles/enable_iommu_on_boot/tasks/manual_modify_grub.yml index 6760c3f9d..e0c880912 100644 --- a/ansible/roles/enable_iommu_on_boot/tasks/manual_modify_grub.yml +++ b/ansible/roles/enable_iommu_on_boot/tasks/manual_modify_grub.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Intel Corporation +# Copyright (c) 2017-2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,14 +12,12 @@ # See the License for the specific language governing permissions and # limitations under the License. --- - - - name: check if iommu is set by this role in /boot grub.cfg files lineinfile: path: "{{ item.path }}" - regexp: '{{ hugepages_params }}{{ iommu_boot_params }}' - line: '' - #changed_when: no + regexp: '{{ iommu_boot_params }}' + line: '{{ iommu_boot_params }}' + state: absent check_mode: yes register: is_mine_iommu_boot_grub ignore_errors: True @@ -29,6 +27,6 @@ path: "{{ item.path }}" regexp: '(.*linux\s+/boot/vmlinuz.*)$' replace: '\1{{ iommu_boot_params }}' - when: is_mine_iommu_boot_grub.msg != "line replaced" + when: not is_mine_iommu_boot_grub.changed - debug: var=ansible_kernel diff --git a/ansible/roles/enable_iommu_on_boot/vars/main.yml b/ansible/roles/enable_iommu_on_boot/vars/main.yml index 1b642dcb5..d2575ffd6 100644 --- a/ansible/roles/enable_iommu_on_boot/vars/main.yml +++ b/ansible/roles/enable_iommu_on_boot/vars/main.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2017 Intel Corporation +# Copyright (c) 2017-2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. --- +grub_file: "/etc/default/grub" +iommu_help_string: ' # added by Yardstick ansible iommu role' update_grub: Debian: "update-grub2" RedHat: "grub2-mkconfig -o /boot/grub2/grub.cfg" diff --git a/ansible/roles/install_dependencies_jumphost/tasks/Debian.yml b/ansible/roles/install_dependencies_jumphost/tasks/Debian.yml index 9baf7e59e..a229cc1a2 100755 --- a/ansible/roles/install_dependencies_jumphost/tasks/Debian.yml +++ b/ansible/roles/install_dependencies_jumphost/tasks/Debian.yml @@ -16,6 +16,12 @@ apt: update_cache: yes +- name: Install dependency for Ubuntu 18 + action: "{{ ansible_pkg_mgr }} name=libssl1.0-dev state=present" + when: + - ansible_distribution == 'Ubuntu' + - ansible_distribution_major_version|int >= 17 + - name: Install core packages action: "{{ ansible_pkg_mgr }} name={{ item }} state=present" with_items: @@ -29,20 +35,17 @@ - vim - libffi-dev - libfuse-dev - - libssl-dev - libxft-dev - libxml2-dev - libxss-dev - - libxslt-dev - libxslt1-dev - - libzmq-dev + - libzmq3-dev - qemu-user-static - qemu-utils - kpartx - python - python-setuptools - python-dev - - python-pip - python-libvirt - python-virtualenv - bridge-utils @@ -54,7 +57,6 @@ - uwsgi-plugin-python - supervisor - lsof - - nodejs - npm - rabbitmq-server @@ -74,3 +76,31 @@ - name: Remove useless packages from the cache apt: autoclean: yes + +# There is a bug with the easy install ansible module in Ubuntu 16.04 linux. +# Refer https://github.com/ansible/ansible/issues/23534 +- name: Install pip + shell: easy_install -U pip + when: + - ansible_distribution == 'Ubuntu' + - ansible_distribution_major_version|int <= 16 + +- name: Install python-pip + action: "{{ ansible_pkg_mgr }} name=python-pip state=present" + when: + - ansible_distribution == 'Ubuntu' + - ansible_distribution_major_version|int >= 17 + +- name: Uninstall docker as it conflicts with docker-py + pip: + name: + - docker + state: absent + +- name: Install required docker-py module + pip: + name: + - docker-py + - shade + state: latest + environment: "{{ proxy_env }}" diff --git a/ansible/roles/install_dependencies_jumphost/tasks/RedHat.yml b/ansible/roles/install_dependencies_jumphost/tasks/RedHat.yml index 85eb1156a..cb5315adb 100644 --- a/ansible/roles/install_dependencies_jumphost/tasks/RedHat.yml +++ b/ansible/roles/install_dependencies_jumphost/tasks/RedHat.yml @@ -52,3 +52,4 @@ - openssl - python-virtualenv - ccze + - python-pip diff --git a/ansible/roles/install_dependencies_jumphost/tasks/Suse.yml b/ansible/roles/install_dependencies_jumphost/tasks/Suse.yml index af53c9cd5..7932ed96d 100644 --- a/ansible/roles/install_dependencies_jumphost/tasks/Suse.yml +++ b/ansible/roles/install_dependencies_jumphost/tasks/Suse.yml @@ -47,3 +47,9 @@ - openssl - python-virtualenv - ccze + +# There is a bug with the easy install ansible module in suse linux. +# Until this is fixed the shell command must be used +# Refer https://github.com/ansible/ansible/issues/37296 +- name: Install pip + shell: easy_install -U pip diff --git a/ansible/roles/install_dpdk/tasks/Debian.yml b/ansible/roles/install_dpdk/tasks/Debian.yml index 4f0c3c881..b76a0fbf8 100755 --- a/ansible/roles/install_dpdk/tasks/Debian.yml +++ b/ansible/roles/install_dpdk/tasks/Debian.yml @@ -17,6 +17,7 @@ with_items: - libpcap-dev - pciutils + - libelf-dev - name: Install kernel headers action: "{{ ansible_pkg_mgr }} name=linux-headers-{{ dpdk_kernel }} state=present" diff --git a/ansible/roles/install_dpdk/tasks/main.yml b/ansible/roles/install_dpdk/tasks/main.yml index d1dc2900b..a1a377eb1 100644 --- a/ansible/roles/install_dpdk/tasks/main.yml +++ b/ansible/roles/install_dpdk/tasks/main.yml @@ -20,6 +20,10 @@ # with_fileglob: # - "{{ local_nsb_path }}/patches/dpdk_custom_patch/0*.patch" +- debug: + var: dpdk_version + verbosity: 2 + - name: find kernel for image, (including chroot) find_kernel: kernel: "{{ ansible_kernel }}" @@ -106,6 +110,7 @@ src: "{{ dpdk_path }}/{{ dpdk_make_arch }}/kmod/igb_uio.ko" dest: "{{ dpdk_module_dir }}/igb_uio.ko" remote_src: yes + when: dpdk_version is version(dpdk_version_for_PROX, '>=') - name: run depmod for dpdk_kernel command: depmod "{{ dpdk_kernel }}" @@ -114,20 +119,14 @@ path: "{{ INSTALL_BIN_PATH }}" state: directory -- set_fact: - major: "{{ dpdk_version.split('.')[0] }}" - minor: "{{ dpdk_version.split('.')[1] }}" - -- set_fact: - major_minor_version: "{{ major }}.{{ minor }}" - - name: copy dpdk-devbind.py to correct location copy: - src: "{{ dpdk_devbind_usertools if major_minor_version|float >= 17.02 else dpdk_devbind_tools }}" + src: "{{ dpdk_devbind_usertools if dpdk_version is version('17.02', '>=') else dpdk_devbind_tools }}" dest: "{{ INSTALL_BIN_PATH }}/dpdk-devbind.py" remote_src: yes force: yes mode: 0755 + when: dpdk_version is version(dpdk_version_for_PROX, '>=') - name: make vPE binary command: make -j {{ ansible_processor_vcpus }} @@ -135,6 +134,7 @@ chdir: "{{ dpdk_path }}/examples/ip_pipeline" environment: RTE_SDK: "{{ dpdk_path }}" + when: dpdk_version is version(dpdk_version_for_PROX, '!=') - name: Copy vPE to correct location copy: @@ -143,3 +143,4 @@ remote_src: yes force: yes mode: 0755 + when: dpdk_version is version(dpdk_version_for_PROX, '!=') diff --git a/ansible/roles/install_image_dependencies/defaults/main.yml b/ansible/roles/install_image_dependencies/defaults/main.yml index 7a3f5fa7e..42951bf6d 100644 --- a/ansible/roles/install_image_dependencies/defaults/main.yml +++ b/ansible/roles/install_image_dependencies/defaults/main.yml @@ -29,6 +29,7 @@ install_dependencies: - libxft-dev - libxss-dev - expect + - libnuma-dev RedHat: - bc - fio diff --git a/ansible/roles/install_yardstick/tasks/main.yml b/ansible/roles/install_yardstick/tasks/main.yml index 203acc3e5..f93f8eec3 100644 --- a/ansible/roles/install_yardstick/tasks/main.yml +++ b/ansible/roles/install_yardstick/tasks/main.yml @@ -29,14 +29,6 @@ scope: global value: False -# There is a bug with the easy install ansible module in suse linux. -# Until this is fixed the shell command must be used -- name: Install pip - shell: easy_install -U pip -# easy_install: -# name: pip -# state: latest - - name: Install Yardstick requirements (venv) pip: requirements: "{{ yardstick_dir }}/requirements.txt" diff --git a/ansible/ubuntu_server_baremetal_deploy_samplevnfs.yml b/ansible/ubuntu_server_baremetal_deploy_samplevnfs.yml index b69fb58fb..4f4d7d075 100644 --- a/ansible/ubuntu_server_baremetal_deploy_samplevnfs.yml +++ b/ansible/ubuntu_server_baremetal_deploy_samplevnfs.yml @@ -15,6 +15,8 @@ - hosts: yardstick-standalone:jumphost vars: clone_dir: /tmp/yardstick-clone + vars_files: + - roles/download_dpdk/defaults/main.yml environment: "{{ proxy_env }}" @@ -24,19 +26,23 @@ when: proxy_env is defined and proxy_env # can't update grub in chroot/docker - enable_hugepages_on_boot + - enable_iommu_on_boot # needed for collectd plugins - increase_open_file_limits - install_image_dependencies - - role: download_dpdk -# dpdk_version: "17.02" - - install_dpdk - download_trex - install_trex - download_civetweb - install_civetweb + - role: download_dpdk + dpdk_version: "{{ dpdk_version_for_PROX }}" + - role: install_dpdk + dpdk_version: "{{ dpdk_version_for_PROX }}" - download_samplevnfs - role: install_samplevnf vnf_name: PROX + - download_dpdk + - install_dpdk - role: install_samplevnf vnf_name: UDP_Replay - role: install_samplevnf diff --git a/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml b/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml index b27933bd1..d894c3dc4 100644 --- a/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml +++ b/ansible/ubuntu_server_cloudimg_modify_samplevnfs.yml @@ -16,6 +16,8 @@ connection: chroot vars: clone_dir: /tmp/yardstick-clone + vars_files: + - roles/download_dpdk/defaults/main.yml pre_tasks: - debug: @@ -35,18 +37,21 @@ - increase_open_file_limits - modify_cloud_config - install_image_dependencies - - role: download_dpdk -# dpdk_version: "17.02" - - install_dpdk - download_trex - install_trex - - download_pktgen - - install_pktgen - download_civetweb - install_civetweb + - role: download_dpdk + dpdk_version: "{{ dpdk_version_for_PROX }}" + - role: install_dpdk + dpdk_version: "{{ dpdk_version_for_PROX }}" - download_samplevnfs - role: install_samplevnf vnf_name: PROX + - download_dpdk + - install_dpdk + - download_pktgen + - install_pktgen - role: install_samplevnf vnf_name: UDP_Replay - role: install_samplevnf diff --git a/dashboard/Prox_BM_IRQ-1543341374112.json b/dashboard/Prox_BM_IRQ-1543341374112.json new file mode 100644 index 000000000..1b17f7eb1 --- /dev/null +++ b/dashboard/Prox_BM_IRQ-1543341374112.json @@ -0,0 +1,24069 @@ +{ + "__inputs": [ + { + "name": "DS_YARDSTICK", + "label": "yardstick", + "description": "", + "type": "datasource", + "pluginId": "influxdb", + "pluginName": "InfluxDB" + } + ], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "4.4.3" + }, + { + "type": "panel", + "id": "graph", + "name": "Graph", + "version": "" + }, + { + "type": "datasource", + "id": "influxdb", + "name": "InfluxDB", + "version": "1.0.0" + }, + { + "type": "panel", + "id": "singlestat", + "name": "Singlestat", + "version": "" + }, + { + "type": "panel", + "id": "text", + "name": "Text", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": "-- Grafana --", + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "type": "dashboard" + } + ] + }, + "editable": true, + "gnetId": null, + "graphTooltip": 0, + "hideControls": false, + "id": null, + "links": [], + "refresh": "5s", + "rows": [ + { + "collapse": false, + "height": -6, + "panels": [ + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 32px '#31A7D3'\"><center>OPNFV_Yardstick_NSB_PROX_BM_IRQ_Test</center> </a></h5>\n<center>\n<p>\n<p style=\"font: 24px '#FF5733'\"> \nThe application queries the status and timing information in order to detect spurious interrupts in the NFVi\n</a>\n</p>\n</center>", + "editable": true, + "error": false, + "height": "200px", + "id": 3, + "links": [], + "mode": "html", + "span": 12, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Generator</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 7, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 12, + "title": "", + "type": "text" + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "600px", + "id": 2, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 12, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "Max IRQ - CPU 1", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "0-1 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter ", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "5-10 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "C", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "10-50 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "D", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "50-100 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "E", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "100-500 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "F", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "500-1000 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "G", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "1-5 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "H", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "5-10 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "I", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "10-50 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.9\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "J", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.9" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "50-100 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.10\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "K", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.10" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "100-500 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.11\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "L", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.11" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "> 500ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.12\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "M", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.12" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 2", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "N", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 3", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "O", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 4", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "P", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_4.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 5", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "Q", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_5.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 6", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "R", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_6.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 7", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "S", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_7.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 8", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "T", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_8.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Generator", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "transparent": false, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": false + } + ] + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>No. of IRQs per second</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 438, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 12, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Core</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 230, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>MAX IRQ</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 231, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>0 - 1 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 232, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>1 - 5 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 233, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>5 - 10 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 234, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>10 - 50 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 235, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>50 - 100 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 236, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>100 - 500 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 237, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>500 - 1000 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 238, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>1 - 5 ms</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 239, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>5 - 10 ms</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 240, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center> > 10 ms</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 241, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": "60", + "panels": [ + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 242, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-4\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 18, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"tg__0.collect_stats.core_1.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + }, + { + "op": "=", + "text": "None-", + "value": "" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 344, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.bucket_0" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 218, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.bucket_1" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 219, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.2" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 220, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 221, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 222, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 223, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_6\" )FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 224, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 225, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 226, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + }, + { + "from": "", + "text": "", + "to": "" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 243, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-4\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 244, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"tg__0.collect_stats.core_2.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 245, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 246, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 247, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 248, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 249, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 250, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 251, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 252, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.bucket_7" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 253, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 254, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_2.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 255, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 256, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"tg__0.collect_stats.core_3.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 257, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 258, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 259, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 260, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean( \"tg__0.collect_stats.core_3.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 261, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 262, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 263, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 264, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 265, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 266, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_3.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 267, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 268, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"tg__0.collect_stats.core_4.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_4.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 269, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 270, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 271, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 272, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 273, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean( \"tg__0.collect_stats.core_4.bucket_4\" ) FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 274, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 275, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 276, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 277, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT \"tg__0.collect_stats.core_4.bucket_8\" FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 278, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_4.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 279, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 280, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_5.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 281, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_0\" )FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "0.00" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 282, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 283, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 284, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 285, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 286, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 287, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 288, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 289, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 290, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_5.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 291, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 292, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"tg__0.collect_stats.core_6.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_6.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "max" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 293, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 294, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 295, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 296, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 297, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 298, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 299, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 300, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 301, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 302, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_6.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 303, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 304, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"tg__0.collect_stats.core_7.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 305, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 306, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 307, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 308, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 309, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 310, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 311, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 312, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 313, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 314, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_7.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 315, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 316, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"tg__0.collect_stats.core_8.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter ", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 317, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_3.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 318, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean( \"tg__0.collect_stats.core_7.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 319, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 320, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 321, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 322, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 323, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 324, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + }, + { + "op": "=", + "text": "None", + "value": "-1" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 325, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_2.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 326, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_8.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_8.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "New row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": 250, + "panels": [ + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>System Under Test</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 327, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 12, + "title": "", + "type": "text" + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "600px", + "id": 437, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 12, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "Max IRQ - CPU 1", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "0-1 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "5-10 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "C", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.2" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "10-50 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "D", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "50-100 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "E", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "100-500 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "F", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.5" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "500-1000 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "G", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.6" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "1-5 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "H", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.7" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "5-10 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "I", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.8" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "10-50 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core_1.9\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "J", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.9" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "50-100 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.10\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "K", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.10" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "100-500 ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.11\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "L", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.11" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "> 500ms", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": true, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.core1.12\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter)", + "rawQuery": false, + "refId": "M", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.12" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 2", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "N", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_2.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 3", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "O", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_3.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 4", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "P", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_4.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 5", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "Q", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_5.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 6", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "R", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_6.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 7", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "S", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_7.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "Max IRQ - CPU 8", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "refId": "T", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_8.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "System Under Test", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "transparent": false, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": false + } + ] + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>No. of IRQs per second</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 439, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 12, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Core</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 329, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>MAX IRQ</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 330, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>0 - 1 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 331, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>1 - 5 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 332, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>5 - 10 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 333, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>10 - 50 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 334, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>50 - 100 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 335, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>100 - 500 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 336, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>500 - 1000 usec</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 337, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>1 - 5 ms</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 338, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>5 - 10 ms</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 339, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center> > 10 ms</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 340, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 1, + "title": "", + "type": "text" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": 250, + "panels": [ + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 341, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 342, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_1.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter\n", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 217, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.bucket_0" + ], + "type": "field" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 343, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 345, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 346, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 347, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 348, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 349, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 350, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 351, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 352, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_1.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_8.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 353, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 354, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_2.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 355, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 356, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 357, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 358, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 359, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 360, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 361, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 362, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 363, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 364, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_2.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 365, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 366, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_3.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 367, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 368, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 369, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 370, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 371, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 372, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 373, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 374, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 375, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 376, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_3.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 377, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 378, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_4.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 379, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 380, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 381, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 382, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 383, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 384, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 385, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 386, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 387, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 388, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_4.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 389, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 390, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_5.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 391, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 392, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 393, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 394, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 395, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 396, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 397, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 398, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 399, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 400, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_5.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 401, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 402, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_6.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 403, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 404, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 405, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 406, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 407, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 408, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 409, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 410, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 411, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 412, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_6.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter ", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 413, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 414, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_7.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter ", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 415, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 416, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 417, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 418, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 419, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 420, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 421, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 422, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 423, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 424, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_7.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 425, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.cpu\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter ", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.cpu" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 426, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT max(\"vnf__0.collect_stats.core_8.max_irq\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.max_irq" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 427, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 MAX IRQ", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_0\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.0" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 428, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_1\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 429, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_2\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 430, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_3\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 431, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_4\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 432, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_5\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 433, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_6\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 434, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_7\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 435, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.bucket_8\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.core_1.1" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 2, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 436, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "CORE 1 1-5 Microsecond", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_irq", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"vnf__0.collect_stats.core_8.overflow\") FROM \"tc_prox_baremetal_irq\" WHERE $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.collect_stats.core_1.overflow" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "50%", + "valueMaps": [ + { + "op": "=", + "text": "None", + "value": "null" + } + ], + "valueName": "avg" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h6" + } + ], + "schemaVersion": 14, + "style": "dark", + "tags": [ + "yardstick", + "NSB", + "Prox", + "IRQ", + "BM" + ], + "templating": { + "list": [] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": { + "refresh_intervals": [ + "5s", + "10s", + "30s", + "1m", + "5m", + "15m", + "30m", + "1h", + "2h", + "1d" + ], + "time_options": [ + "5m", + "15m", + "1h", + "6h", + "12h", + "24h", + "2d", + "7d", + "30d" + ] + }, + "timezone": "browser", + "title": "Prox_BM_IRQ", + "version": 41 +}
\ No newline at end of file diff --git a/dashboard/Prox_BM_L3FWD-2Port-1507803870940.json b/dashboard/Prox_BM_L3FWD-2Port-1507803870940.json deleted file mode 100644 index 4d8d15b0c..000000000 --- a/dashboard/Prox_BM_L3FWD-2Port-1507803870940.json +++ /dev/null @@ -1,1003 +0,0 @@ -{ - "__inputs": [ - { - "name": "DS_YARDSTICK", - "label": "yardstick", - "description": "", - "type": "datasource", - "pluginId": "influxdb", - "pluginName": "InfluxDB" - } - ], - "__requires": [ - { - "type": "grafana", - "id": "grafana", - "name": "Grafana", - "version": "4.4.3" - }, - { - "type": "panel", - "id": "graph", - "name": "Graph", - "version": "" - }, - { - "type": "datasource", - "id": "influxdb", - "name": "InfluxDB", - "version": "1.0.0" - }, - { - "type": "panel", - "id": "text", - "name": "Text", - "version": "" - } - ], - "annotations": { - "list": [] - }, - "editable": true, - "gnetId": null, - "graphTooltip": 0, - "hideControls": false, - "id": null, - "links": [], - "refresh": false, - "rows": [ - { - "collapse": false, - "height": "100px", - "panels": [ - { - "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 32px '#31A7D3'\"><center>OPNFV_Yardstick_NSB_PROX_BM_L3Fwd_2Port_Test</center> </a></h5>\n<center>\n<p>The application performs routing of packets with LPM based look-up method.\nThe KPI is the number of packets per second for a specified packet size with an accepted minimal packet loss </p>\n</center>", - "editable": true, - "error": false, - "id": 3, - "links": [], - "mode": "html", - "span": 12, - "title": "", - "type": "text" - }, - { - "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Prox L3Fwd VNF stats</center> </a></h5>\n", - "editable": true, - "error": false, - "height": "40", - "id": 7, - "links": [], - "mode": "html", - "span": 12, - "title": "", - "type": "text" - } - ], - "repeat": null, - "repeatIteration": null, - "repeatRowId": null, - "showTitle": false, - "title": "Row", - "titleSize": "h6" - }, - { - "collapse": false, - "height": "300px", - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_YARDSTICK}", - "editable": true, - "error": false, - "fill": 1, - "grid": {}, - "height": "300", - "id": 4, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "links": [], - "nullPointMode": "connected", - "percentage": false, - "pointradius": 1, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "span": 12, - "stack": false, - "steppedLine": false, - "targets": [ - { - "alias": "VNF packets Forward", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "vnf__0.packets_fwd" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - }, - { - "alias": "VNF packets in", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "policy": "default", - "refId": "C", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "vnf__0.packets_in" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - }, - { - "alias": "VNF packets dropped", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "policy": "default", - "refId": "B", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "vnf__0.packets_dropped" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - } - ], - "thresholds": [ - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(216, 200, 27, 0.27)", - "op": "gt", - "value": 2 - }, - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(234, 112, 112, 0.22)", - "op": "gt", - "value": 2 - } - ], - "timeFrom": null, - "timeShift": null, - "title": "VNF stats: Packet In, Forward and Dropped", - "tooltip": { - "msResolution": true, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": "Packets", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Prox L3Fwd Traffic Gen stats</center> </a></h5>\n", - "editable": true, - "error": false, - "height": "40", - "id": 8, - "links": [], - "mode": "html", - "span": 12, - "title": "", - "type": "text" - } - ], - "repeat": null, - "repeatIteration": null, - "repeatRowId": null, - "showTitle": false, - "title": "New row", - "titleSize": "h6" - }, - { - "collapse": false, - "height": "300px", - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_YARDSTICK}", - "editable": true, - "error": false, - "fill": 1, - "grid": {}, - "id": 6, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "links": [], - "nullPointMode": "connected", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "span": 6, - "stack": false, - "steppedLine": false, - "targets": [ - { - "alias": "TG xe-0 Out packets", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "tg__0.xe0.out_packets" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - }, - { - "alias": "TG xe-1 Out packets", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "policy": "default", - "refId": "B", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "tg__0.xe1.out_packets" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - } - ], - "thresholds": [ - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(216, 200, 27, 0.27)", - "op": "gt", - "value": 2 - }, - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(234, 112, 112, 0.22)", - "op": "gt", - "value": 2 - } - ], - "timeFrom": null, - "timeShift": null, - "title": "TG Port Stats: Out packets", - "tooltip": { - "msResolution": true, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": "Packets", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_YARDSTICK}", - "editable": true, - "error": false, - "fill": 1, - "grid": {}, - "id": 9, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "links": [], - "nullPointMode": "connected", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "span": 6, - "stack": false, - "steppedLine": false, - "targets": [ - { - "alias": "TG xe-0 in packets", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "tg__0.xe0.in_packets" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - }, - { - "alias": "TG xe-1 in packets", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "policy": "default", - "refId": "B", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "tg__0.xe1.in_packets" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - } - ], - "thresholds": [ - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(216, 200, 27, 0.27)", - "op": "gt", - "value": 2 - }, - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(234, 112, 112, 0.22)", - "op": "gt", - "value": 2 - } - ], - "timeFrom": null, - "timeShift": null, - "title": "TG Port Stats: In packets", - "tooltip": { - "msResolution": true, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": "Packets", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - } - ], - "repeat": null, - "repeatIteration": null, - "repeatRowId": null, - "showTitle": false, - "title": "New row", - "titleSize": "h6" - }, - { - "collapse": false, - "height": "250px", - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_YARDSTICK}", - "editable": true, - "error": false, - "fill": 1, - "grid": {}, - "id": 2, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "links": [], - "nullPointMode": "connected", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "span": 6, - "stack": false, - "steppedLine": false, - "targets": [ - { - "alias": "TG TX Throughput", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "orderByTime": "ASC", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "tg__0.TxThroughput" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - }, - { - "alias": "TG RX Throughput", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "orderByTime": "ASC", - "policy": "default", - "refId": "B", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "tg__0.RxThroughput" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - } - ], - "thresholds": [ - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(216, 200, 27, 0.27)", - "op": "gt", - "value": 2 - }, - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(234, 112, 112, 0.22)", - "op": "gt", - "value": 2 - } - ], - "timeFrom": null, - "timeShift": null, - "title": "TG Throughput Stats", - "tooltip": { - "msResolution": true, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "label": "Throughput in MPPS", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": "${DS_YARDSTICK}", - "editable": true, - "error": false, - "fill": 1, - "grid": {}, - "id": 5, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 2, - "links": [], - "nullPointMode": "connected", - "percentage": false, - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "span": 6, - "stack": false, - "steppedLine": false, - "targets": [ - { - "alias": "TG Packet Size", - "dsType": "influxdb", - "groupBy": [ - { - "params": [ - "$interval" - ], - "type": "time" - }, - { - "params": [ - "null" - ], - "type": "fill" - } - ], - "measurement": "tc_prox_baremetal_l3fwd-2", - "orderByTime": "ASC", - "policy": "default", - "refId": "A", - "resultFormat": "time_series", - "select": [ - [ - { - "params": [ - "tg__0.PktSize" - ], - "type": "field" - }, - { - "params": [], - "type": "mean" - } - ] - ], - "tags": [] - } - ], - "thresholds": [ - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(216, 200, 27, 0.27)", - "op": "gt", - "value": 2 - }, - { - "colorMode": "custom", - "fill": true, - "fillColor": "rgba(234, 112, 112, 0.22)", - "op": "gt", - "value": 2 - } - ], - "timeFrom": null, - "timeShift": null, - "title": "Packet size", - "tooltip": { - "msResolution": true, - "shared": true, - "sort": 0, - "value_type": "cumulative" - }, - "type": "graph", - "xaxis": { - "buckets": null, - "mode": "time", - "name": null, - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "decbytes", - "label": "Packet Size", - "logBase": 1, - "max": null, - "min": null, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": true - } - ] - } - ], - "repeat": null, - "repeatIteration": null, - "repeatRowId": null, - "showTitle": false, - "title": "New row", - "titleSize": "h6" - }, - { - "collapse": false, - "height": "250px", - "panels": [], - "repeat": null, - "repeatIteration": null, - "repeatRowId": null, - "showTitle": false, - "title": "New row", - "titleSize": "h6" - } - ], - "schemaVersion": 14, - "style": "dark", - "tags": [ - "NSB", - "Prox", - "BM", - "L3Fwd", - "2Port" - ], - "templating": { - "list": [] - }, - "time": { - "from": "2017-10-02T11:24:07.295Z", - "to": "2017-10-02T11:26:12.649Z" - }, - "timepicker": { - "refresh_intervals": [ - "5s", - "10s", - "30s", - "1m", - "5m", - "15m", - "30m", - "1h", - "2h", - "1d" - ], - "time_options": [ - "5m", - "15m", - "1h", - "6h", - "12h", - "24h", - "2d", - "7d", - "30d" - ] - }, - "timezone": "browser", - "title": "Prox_BM_L3FWD-2Port", - "version": 4 -}
\ No newline at end of file diff --git a/dashboard/Prox_BM_L3FWD-2Port-1544192619129.json b/dashboard/Prox_BM_L3FWD-2Port-1544192619129.json new file mode 100644 index 000000000..08259140a --- /dev/null +++ b/dashboard/Prox_BM_L3FWD-2Port-1544192619129.json @@ -0,0 +1,12132 @@ +{ + "__inputs": [ + { + "name": "DS_YARDSTICK", + "label": "yardstick", + "description": "", + "type": "datasource", + "pluginId": "influxdb", + "pluginName": "InfluxDB" + } + ], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "4.6.3" + }, + { + "type": "panel", + "id": "graph", + "name": "Graph", + "version": "" + }, + { + "type": "datasource", + "id": "influxdb", + "name": "InfluxDB", + "version": "1.0.0" + }, + { + "type": "panel", + "id": "singlestat", + "name": "Singlestat", + "version": "" + }, + { + "type": "panel", + "id": "text", + "name": "Text", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": "-- Grafana --", + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "type": "dashboard" + } + ] + }, + "editable": true, + "gnetId": null, + "graphTooltip": 0, + "hideControls": false, + "id": null, + "links": [], + "refresh": "5s", + "rows": [ + { + "collapse": false, + "height": -6, + "panels": [ + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 32px '#31A7D3'\"><center>OPNFV_Yardstick_NSB_PROX_BM_L3FWD_2Port_Test</center> </a></h5>\n<center>\n<p>\n<p style=\"font: 24px '#FF5733'\"> \nThe application performs routing of packets with LPM based look-up method.\nThe KPI is the number of packets per second for a specified packet size with an accepted minimal packet loss \n</a>\n</p>\n</center>", + "editable": true, + "error": false, + "height": "200px", + "id": 3, + "links": [], + "mode": "html", + "span": 8, + "title": "", + "type": "text" + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"font: 28px '#31A7D3'\"><center>Test Parameters</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "90px", + "id": 124, + "links": [], + "mode": "html", + "span": 4, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 125, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.duration" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "Test Interval", + "type": "singlestat", + "valueFontSize": "80%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 126, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.test_precision" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "Test Precision", + "type": "singlestat", + "valueFontSize": "80%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 127, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.test_duration" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "Test Duration", + "type": "singlestat", + "valueFontSize": "80%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 128, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.tolerated_loss" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": "", + "title": "Tolerated Loss", + "type": "singlestat", + "valueFontSize": "80%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": "300", + "panels": [ + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "fill": 1, + "height": "300px", + "id": 123, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sort": null, + "sortDesc": null, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 12, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "Cumulative Packets Sents", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.packets_fwd" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "line": true, + "lineColor": "rgba(0, 0, 0, 0)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgb(234, 112, 112, 0.22)", + "line": true, + "lineColor": "rgba(0, 0, 0, 0.01)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Cumulative Load Sent by Generator", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Packets Per Second", + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": true, + "title": "Cumulative Load Sent by Generator", + "titleSize": "h6" + }, + { + "collapse": false, + "height": "60", + "panels": [ + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Throughput</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 7, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 12, + "title": "", + "type": "text" + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300px", + "id": 2, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "Load Requested to Generator", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RequestedTxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "Load Generated (by the Generator)", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.TxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "Load Received (by the Generator)", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Generator Stats: Average Throughout per step", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "transparent": false, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Million Packets Per Second", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": false + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300px", + "id": 5, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "Packet Size", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Packet size", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "none", + "label": "Packet Size (Bytes)", + "logBase": 2, + "max": null, + "min": null, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "New row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": 169, + "panels": [ + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300px", + "id": 206, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "TG xe-0 Out packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.xe0.out_packets\") / 1000000 FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.live_stats.xe0.out_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + }, + { + "alias": "TG xe-1 Out packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.live_stats.xe1.out_packets\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.live_stats.xe1.out_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Packets Sent by Generator per second and per interface", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Million Packets Per Second", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300px", + "id": 207, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "TG xe-0 in packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.xe0.in_packets\") / 1000000 FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.live_stats.xe0.in_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + }, + { + "alias": "TG xe-1 in packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.live_stats.xe1.in_packets\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.live_stats.xe1.in_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Packets Received by Generator per second and per interface", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Million Packets Per Second", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300", + "id": 4, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "rightSide": false, + "show": true, + "sortDesc": false, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 1, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "SUT Packets Received", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "C", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.curr_packets_in" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "SUT Stats - Load Received By SUT", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Million Packets per Second", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": "0", + "show": true + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300px", + "id": 39, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "rightSide": false, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 1, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "SUT Packets Sent", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf__0.curr_packets_fwd" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "SUT Stats - Load Forwarded By SUT", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Million Packets per Second", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Generator Stats: Packets per Step</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "40", + "id": 8, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 12, + "title": "", + "type": "text" + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300px", + "id": 43, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": true, + "targets": [ + { + "alias": "TG xe-0 Out packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.xe0.out_packets\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.xe0.out_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + }, + { + "alias": "TG xe-1 Out packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.xe1.out_packets\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.xe1.out_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Packets Sent by Generator per Step", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Million Packets Per Step", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "editable": true, + "error": false, + "fill": 1, + "grid": {}, + "height": "300px", + "id": 9, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "TG xe-0 in packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.xe0.in_packets\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.xe0.in_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + }, + { + "alias": "TG xe-1 in packets", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.xe1.in_packets\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE $timeFilter GROUP BY time($interval) fill(null)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.xe1.in_packets" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + }, + { + "params": [ + " / 1000000" + ], + "type": "math" + } + ] + ], + "tags": [] + } + ], + "thresholds": [ + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(216, 200, 27, 0.27)", + "op": "gt", + "value": 0 + }, + { + "colorMode": "custom", + "fill": true, + "fillColor": "rgba(234, 112, 112, 0.22)", + "op": "gt", + "value": 0 + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Packets Received by Generator per Step", + "tooltip": { + "msResolution": true, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Million Packets Per Step", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "New row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": "400px", + "panels": [ + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "fill": 1, + "height": "300px", + "id": 10, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sort": null, + "sortDesc": null, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "SUCCESS Tx Total", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT \"tg__0.collect_stats.tx_total\" FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.tx_total\" = 'Success' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.tx_total" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Success" + } + ] + }, + { + "alias": "SUCCESS Rx Total", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.rx_total" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Success" + } + ] + }, + { + "alias": "SUCCESS ALLOWABLE LOST PACKETS", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "C", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.can_be_lost" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Success" + } + ] + } + ], + "thresholds": [], + "timeFrom": null, + "timeShift": null, + "title": "SUCCESS CRITERIA: TX Total = Rx Total + Tolerated Loss", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "Packets Per Second", + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "fill": 1, + "height": "300px", + "id": 129, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "MAX Line Rate", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT \"tg__0.collect_stats.tx_total\" FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.tx_total\" = 'Success' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": false, + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.MAX_Rate" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "MIN Line Rate", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.MIN_Rate" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "Current Line Rate", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "C", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.Test_Rate" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": [], + "timeFrom": null, + "timeShift": null, + "title": "Line Rate", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "percent", + "label": "Percentage of Line Rate", + "logBase": 1, + "max": null, + "min": null, + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + }, + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Performance Stats</center> </a></h5>\n", + "editable": true, + "error": false, + "height": "30", + "id": 130, + "links": [], + "minSpan": 12, + "mode": "html", + "span": 12, + "title": "", + "type": "text" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "New row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": 81, + "panels": [ + { + "content": "<font size=\"1\"><center>Packet size</center></font>", + "height": "100px", + "id": 15, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Theoretical Max Throughput (MPPS)</center></font>", + "height": "100px", + "id": 16, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Tx Throughput (MPPS)</center></font>", + "height": "100px", + "id": 17, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Rx Throughput (MPPS)</center></font>", + "height": "100px", + "id": 58, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Tot Sent </center></font>", + "height": "100px", + "id": 61, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Tot Received</center></font>", + "height": "100px", + "id": 62, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Tot Dropped</center></font>", + "height": "100px", + "id": 63, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Tolerated Loss</center></font>", + "height": "100px", + "id": 64, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "<font size=\"1\"><center>Rx Throughput (Gbps)</center></font>", + "height": "100px", + "id": 131, + "links": [], + "mode": "html", + "span": 1, + "title": "", + "type": "text" + }, + { + "content": "", + "height": "100px", + "id": 132, + "links": [], + "mode": "html", + "span": 3, + "title": "", + "type": "text" + }, + { + "content": "", + "height": "100px", + "id": 133, + "links": [], + "mode": "html", + "span": 0, + "title": "", + "type": "text" + }, + { + "content": "", + "height": "100px", + "id": 134, + "links": [], + "mode": "html", + "span": 0, + "title": "", + "type": "text" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": -913, + "panels": [ + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 18, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 19, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RequestedTxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 20, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 69, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 70, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 71, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 72, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 73, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 82, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 64", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 64 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 135, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 136, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 137, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.theor_max_throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 138, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 139, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 140, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 141, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 142, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 143, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 144, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 128", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 128 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 145, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 146, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 147, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.theor_max_throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 148, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 149, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 150, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 151, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 152, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 153, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 154, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 256", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 256 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 155, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 156, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 157, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.theor_max_throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 158, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 159, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 160, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 161, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 162, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 163, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 164, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 512", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 512 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 165, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 166, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 167, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.theor_max_throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 168, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 169, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 170, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 171, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 172, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 173, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 174, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 1024", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1024 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 175, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 176, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 177, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.theor_max_throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 178, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 179, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 180, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 181, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 182, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 183, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 184, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1280 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 185, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 186, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 187, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 1280", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.theor_max_throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 188, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 189, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 190, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 191, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 192, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 193, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 194, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 1518", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 1518 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 195, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 196, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "PktSize = 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT mean(\"tg__0.collect_stats.PktSize\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.PktSize", + "operator": "=", + "value": "64" + }, + { + "condition": "AND", + "key": "tg__0.collect_stats.Status", + "operator": "=", + "value": "Result" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "hideTimeOverride": false, + "id": 197, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Theor Max Throughput (Mpps) 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.theor_max_throughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.theor_max_throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 198, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "TxThroughput 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.TxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(null)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 199, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "last", + "targets": [ + { + "alias": "RxThroughput 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.RxThroughput" + ], + "type": "field" + }, + { + "params": [], + "type": "last" + } + ] + ], + "tags": [ + { + "key": "tg__0.collect_stats.pktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 200, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Tot Sent 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.tx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 201, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Tottal 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.rx_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 202, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "drop total 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.drop_total\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 0, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 203, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Can be lost 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.can_be_lost\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.Success_Throughput" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "cacheTimeout": null, + "colorBackground": false, + "colorValue": false, + "colors": [ + "rgba(245, 54, 54, 0.9)", + "rgba(237, 129, 40, 0.89)", + "rgba(50, 172, 45, 0.97)" + ], + "datasource": "${DS_YARDSTICK}", + "decimals": 4, + "format": "none", + "gauge": { + "maxValue": 100, + "minValue": 0, + "show": false, + "thresholdLabels": false, + "thresholdMarkers": true + }, + "height": "100px", + "id": 204, + "interval": null, + "links": [], + "mappingType": 1, + "mappingTypes": [ + { + "name": "value to text", + "value": 1 + }, + { + "name": "range to text", + "value": 2 + } + ], + "maxDataPoints": 100, + "nullPointMode": "connected", + "nullText": null, + "postfix": "", + "postfixFontSize": "50%", + "prefix": "", + "prefixFontSize": "50%", + "rangeMaps": [ + { + "from": "null", + "text": "N/A", + "to": "null" + } + ], + "span": 1, + "sparkline": { + "fillColor": "rgba(31, 118, 189, 0.18)", + "full": false, + "lineColor": "rgb(31, 120, 193)", + "show": false + }, + "tableColumn": "", + "targets": [ + { + "alias": "Rx Throughput Gbps 2048", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "hide": false, + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "query": "SELECT last(\"tg__0.collect_stats.RxThroughput_gbps\") FROM \"tc_prox_baremetal_l3fwd-2\" WHERE \"tg__0.collect_stats.PktSize\" = 2048 AND \"tg__0.collect_stats.Status\" = 'Result' AND $timeFilter GROUP BY time($__interval) fill(none)", + "rawQuery": true, + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.PktSize" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [ + { + "key": "tg__0.PktSize", + "operator": "=", + "value": "64" + } + ] + } + ], + "thresholds": "", + "title": "", + "type": "singlestat", + "valueFontSize": "30%", + "valueMaps": [ + { + "op": "=", + "text": "N/A", + "value": "null" + } + ], + "valueName": "avg" + }, + { + "content": "", + "height": "100px", + "id": 205, + "links": [], + "mode": "markdown", + "span": 3, + "title": "", + "type": "text" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h3" + }, + { + "collapse": false, + "height": "40px", + "panels": [ + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>Latency</center> </a></h5>", + "height": "40", + "id": 41, + "links": [], + "mode": "html", + "span": 12, + "title": "", + "type": "text" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": 250, + "panels": [ + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "fill": 1, + "height": "300px", + "id": 47, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "xe0 Latency Avg", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.LatencyAvg.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "xe0 Latency Max", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.LatencyMax.3" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": [], + "timeFrom": null, + "timeShift": null, + "title": "xe0 Latency", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "usec", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": "0", + "show": true + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "fill": 1, + "height": "300px", + "id": 48, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "xe1 Latency Avg", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.LatencyAvg.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + }, + { + "alias": "xe1 Latency Max", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg__0.collect_stats.LatencyMax.4" + ], + "type": "field" + }, + { + "params": [], + "type": "mean" + } + ] + ], + "tags": [] + } + ], + "thresholds": [], + "timeFrom": null, + "timeShift": null, + "title": "xe1 Latency", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "usec", + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ] + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": "40px", + "panels": [ + { + "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><a style=\"font: 22px '#31A7D3'\"><center>CPU Utilization</center> </a></h5>", + "height": "40px", + "id": 51, + "links": [], + "mode": "html", + "span": 12, + "title": "", + "type": "text" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h6" + }, + { + "collapse": false, + "height": -77, + "panels": [ + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 5, + "fill": 1, + "height": "600px", + "id": 52, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "CPU 0 Utilization", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg_0.yardstick.core.cpu.0.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 1 Utilization - Gen XE0", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg_0.yardstick.core.cpu.1.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 2 Utilization - Gen XE1", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "C", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg_0.yardstick.core.cpu.2.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 3 Utilization - Latency XE0", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "D", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg_0.yardstick.core.cpu.3.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 4 Utilization - Latency XE1", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "E", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg_0.yardstick.core.cpu.4.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 5 Utilization - Idle", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "null" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "F", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "tg_0.yardstick.core.cpu.5.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + } + ], + "thresholds": [], + "timeFrom": null, + "timeShift": null, + "title": "Traffic Generator CPU Utilization", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "% Utilization", + "logBase": 1, + "max": "100", + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": "0", + "show": true + } + ] + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_YARDSTICK}", + "decimals": 5, + "fill": 1, + "height": "600px", + "id": 53, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": true, + "show": true, + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 2, + "links": [], + "nullPointMode": "connected", + "percentage": false, + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "span": 6, + "stack": false, + "steppedLine": false, + "targets": [ + { + "alias": "CPU 0 Utilization", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "B", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf_0.yardstick.core.cpu.0.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 1 Utilization - RX XE0 - Routing XE0 and XE1", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "A", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf_0.yardstick.core.cpu.1.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 2 Utilization - RX XE1 - Routing XE0 and XE1", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "C", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf_0.yardstick.core.cpu.2.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 3 Utilization - Idle", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "D", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf_0.yardstick.core.cpu.3.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + }, + { + "alias": "CPU 4 Utilization - Idle", + "dsType": "influxdb", + "groupBy": [ + { + "params": [ + "$__interval" + ], + "type": "time" + }, + { + "params": [ + "none" + ], + "type": "fill" + } + ], + "measurement": "tc_prox_baremetal_l3fwd-2", + "orderByTime": "ASC", + "policy": "default", + "refId": "E", + "resultFormat": "time_series", + "select": [ + [ + { + "params": [ + "vnf_0.yardstick.core.cpu.4.percent-user" + ], + "type": "field" + }, + { + "params": [], + "type": "distinct" + } + ] + ], + "tags": [] + } + ], + "thresholds": [], + "timeFrom": null, + "timeShift": null, + "title": "VNF CPU Utilization", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": "% Utilization", + "logBase": 1, + "max": "100", + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": "0", + "show": true + } + ] + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": false, + "title": "Dashboard Row", + "titleSize": "h6" + } + ], + "schemaVersion": 14, + "style": "dark", + "tags": [ + "yardstick", + "NSB", + "Prox", + "L3fwd", + "2Port", + "BM" + ], + "templating": { + "list": [] + }, + "time": { + "from": "now-3h", + "to": "now" + }, + "timepicker": { + "refresh_intervals": [ + "5s", + "10s", + "30s", + "1m", + "5m", + "15m", + "30m", + "1h", + "2h", + "1d" + ], + "time_options": [ + "5m", + "15m", + "1h", + "6h", + "12h", + "24h", + "2d", + "7d", + "30d" + ] + }, + "timezone": "browser", + "title": "Prox_BM_L3FWD-2Port", + "version": 9 +}
\ No newline at end of file diff --git a/dashboard/Prox_BM_L3FWD-4Port-1539358774395.json b/dashboard/Prox_BM_L3FWD-4Port-1544192654086.json index 304290560..cc8f6d4eb 100644 --- a/dashboard/Prox_BM_L3FWD-4Port-1539358774395.json +++ b/dashboard/Prox_BM_L3FWD-4Port-1544192654086.json @@ -14,7 +14,7 @@ "type": "grafana", "id": "grafana", "name": "Grafana", - "version": "4.4.3" + "version": "4.6.3" }, { "type": "panel", @@ -777,6 +777,7 @@ "type": "fill" } ], + "hide": false, "measurement": "tc_prox_baremetal_l3fwd-4", "orderByTime": "ASC", "policy": "default", @@ -786,7 +787,7 @@ [ { "params": [ - "tg__0.TxThroughput" + "tg__0.collect_stats.TxThroughput" ], "type": "field" }, @@ -825,7 +826,7 @@ [ { "params": [ - "tg__0.RxThroughput" + "tg__0.collect_stats.RxThroughput" ], "type": "field" }, @@ -13093,5 +13094,5 @@ }, "timezone": "browser", "title": "Prox_BM_L3FWD-4Port", - "version": 6 + "version": 9 }
\ No newline at end of file diff --git a/docker/Dockerfile_ubuntu18 b/docker/Dockerfile_ubuntu18 new file mode 100644 index 000000000..e9fe42ecb --- /dev/null +++ b/docker/Dockerfile_ubuntu18 @@ -0,0 +1,62 @@ +############################################################################## +# Copyright (c) 2015 Ericsson AB and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +FROM ubuntu:18.04 + +LABEL image=opnfv/yardstick-ubuntu-18.04 + +ARG BRANCH=master + +# GIT repo directory +ENV REPOS_DIR="/home/opnfv/repos" \ + IMAGE_DIR="/home/opnfv/images/" + +# Set work directory + +# Yardstick repo +ENV YARDSTICK_REPO_DIR="${REPOS_DIR}/yardstick/" \ + RELENG_REPO_DIR="${REPOS_DIR}/releng" \ + STORPERF_REPO_DIR="${REPOS_DIR}/storperf" + +RUN apt-get update && apt-get install -y git python python-setuptools python-pip iputils-ping && apt-get -y autoremove && apt-get clean + +RUN pip install appdirs==1.4.0 pyopenssl==17.5.0 openstacksdk==0.9.17 python-openstackclient==3.12.1 python-heatclient==1.11.1 ansible==2.5.5 + +RUN mkdir -p ${REPOS_DIR} + +RUN git config --global http.sslVerify false +#For developers: To test your changes you must comment out the git clone for ${YARDSTICK_REPO_DIR}. +#You must also uncomment the RUN and COPY commands below. +#You must run docker build from your yardstick directory on the host. +RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/yardstick ${YARDSTICK_REPO_DIR} +#RUN mkdir ${YARDSTICK_REPO_DIR} +#COPY ./ ${YARDSTICK_REPO_DIR} +RUN git clone --depth 1 https://gerrit.opnfv.org/gerrit/releng ${RELENG_REPO_DIR} +RUN git clone --depth 1 -b $BRANCH https://gerrit.opnfv.org/gerrit/storperf ${STORPERF_REPO_DIR} + +RUN ansible-playbook -i ${YARDSTICK_REPO_DIR}/ansible/install-inventory.ini -c local -vvv -e INSTALLATION_MODE="container" ${YARDSTICK_REPO_DIR}/ansible/install.yaml + +RUN ${YARDSTICK_REPO_DIR}/docker/supervisor.sh + +RUN echo "daemon off;" >> /etc/nginx/nginx.conf +# nginx=5000, rabbitmq=5672 +EXPOSE 5000 5672 + +ADD http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img ${IMAGE_DIR} +ADD http://cloud-images.ubuntu.com/xenial/current/xenial-server-cloudimg-amd64-disk1.img ${IMAGE_DIR} + +# For developers: when `docker build ...` is running from YARDSTICK_REPO_DIR, please change +# path `./exec_tests.sh` -> `./docker/exec_tests.sh``. +COPY ./exec_tests.sh /usr/local/bin/ + +ENV NSB_DIR="/opt/nsb_bin" +ENV PYTHONPATH="${PYTHONPATH}:${NSB_DIR}/trex_client:${NSB_DIR}/trex_client/stl" + +WORKDIR ${REPOS_DIR} +CMD ["/usr/bin/supervisord"] diff --git a/docker/supervisor.sh b/docker/supervisor.sh index 44e34fb38..bd17cfbc4 100755 --- a/docker/supervisor.sh +++ b/docker/supervisor.sh @@ -10,8 +10,10 @@ # nginx service start when boot supervisor_config='/etc/supervisor/conf.d/yardstick.conf' +rabbitmq_config='/etc/supervisor/conf.d/rabbitmq.conf' if [[ ! -e "${supervisor_config}" ]]; then + cat << EOF > "${supervisor_config}" [supervisord] nodaemon = true @@ -22,8 +24,18 @@ command = service nginx restart [program:yardstick_uwsgi] directory = /etc/yardstick command = uwsgi -i yardstick.ini +EOF + +fi + +if [[ ! -e "${rabbitmq_config}" ]]; then + cat << EOF > "${rabbitmq_config}" [program:rabbitmq] -command = service rabbitmq-server restart +command = /bin/bash -c "service rabbitmq-server restart + rabbitmqctl start_app + rabbitmqctl add_user yardstick yardstick + rabbitmqctl set_permissions -p / yardstick '.*' '.*'" EOF + fi diff --git a/docs/release/release-notes/release-notes.rst b/docs/release/release-notes/release-notes.rst index 4b3f12bcf..914daa3a4 100644 --- a/docs/release/release-notes/release-notes.rst +++ b/docs/release/release-notes/release-notes.rst @@ -33,6 +33,9 @@ Version History | November 9, 2018 | 7.0.0 | Yardstick for Gambia release | | | | | +-------------------+-----------+---------------------------------+ +| December 14, 2018 | 7.1.0 | Yardstick for Gambia release | +| | | | ++-------------------+-----------+---------------------------------+ Important Notes @@ -111,19 +114,19 @@ Release Data | **Project** | Yardstick | | | | +--------------------------------+-----------------------+ -| **Repo/tag** | yardstick/opnfv-7.0.0 | +| **Repo/tag** | yardstick/opnfv-7.1.0 | | | | +--------------------------------+-----------------------+ -| **Yardstick Docker image tag** | opnfv-7.0.0 | +| **Yardstick Docker image tag** | opnfv-7.1.0 | | | | +--------------------------------+-----------------------+ -| **Release designation** | Gambia 7.0 | +| **Release designation** | Gambia 7.1 | | | | +--------------------------------+-----------------------+ -| **Release date** | November 9, 2018 | +| **Release date** | December 14, 2018 | | | | +--------------------------------+-----------------------+ -| **Purpose of the delivery** | OPNFV Gambia 7.0.0 | +| **Purpose of the delivery** | OPNFV Gambia 7.1.0 | | | | +--------------------------------+-----------------------+ @@ -269,7 +272,7 @@ List of Scenarios New Test cases -------------- -.. note:: Yardstick Gambia 7.0.0 adds no new test cases. +.. note:: Yardstick Gambia 7.1.0 adds no new test cases. * Generic NFVI test cases @@ -326,7 +329,7 @@ Feature additions Scenario Matrix =============== -For Gambia 7.0.0, Yardstick was tested on the following scenarios: +For Gambia 7.1.0, Yardstick was tested on the following scenarios: +-------------------------+------+---------+----------+------+ | Scenario | Apex | Compass | Fuel-arm | Fuel | @@ -370,58 +373,35 @@ Known Issues/Faults Corrected Faults ---------------- -Gambia 7.0.0: +Gambia 7.1.0: +--------------------+--------------------------------------------------------------------------+ | **JIRA REFERENCE** | **DESCRIPTION** | +====================+==========================================================================+ -| YARDSTICK-1137 | Fix CLI argument handling in nsb_setup.sh | -+--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1220 | Get stats for multiple port simultaneously | -+--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1260 | Added missing functionality to start VM and access it using SSH keys | -| | in Standalone contexts. | -+--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1298 | Allows for in-line overriding/modification of traffic profile variables | -| | from the testcase file. | +| YARDSTICK-1241 | Update NSB PROX devguide. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1368 | Updated existing test cases in Yardstick to minimize changes done | -| | manually to run standalone tests for Trex. | +| YARDSTICK-1458 | NSB NFVi PROX Should report realtime port activity not historical data. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1389 | Add status filed for RFC2544 TC iterations | +| YARDSTICK-1471 | Add Testcase Prox Standalone SRIOV. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1395 | Update 'configure_uwsgi' role to work in baremetal/container modes. | +| YARDSTICK-1475 | Adding Testcase for Prox Stanalone OvS-DPDK. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1402 | Change IP assignment for VM to static for standalone context | +| YARDSTICK-1500 | Adding Testcase for Prox L2FWD PktTouch Stanalone OvS-DPDK. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1404 | CPU Utilization for VNF and traffic generator are now graphed on Grafana | +| YARDSTICK-1517 | Missing opnfv "os-ovn-nofeature-ha" scenario test suite. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1411 | Fix Yardstick Docker image ARM build | +| YARDSTICK-l526 | Run testcase 074 result overridden by job status. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1414 | Update the pinned sampleVNF version to use a commit instead of a branch | +| YARDSTICK-1547 | Adding scale up test case for l3fwd OvS-DPDK. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1418 | NSB PROX NFVi test now stops after reaching expected precision | +| YARDSTICK-1560 | Fix pip environment. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1457 | Fix influxdb "field type conflict" error | +| YARDSTICK-1561 | L3FWD Gradana Dashboards Out-of-date and incorrect. | +--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1458 | Update Grafana to display "real-time" data instead of historical data. | -+--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1462 | NSB: Add OvS 2.8.1 support in SA context | -+--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1492 | Make OvS server to listen on TCP | -+--------------------+--------------------------------------------------------------------------+ -| YARDSTICK-1493 | The RX queues number is hard-codded and cannot be changed | -+--------------------+--------------------------------------------------------------------------+ - -Gambia 7.0.0 known restrictions/issues +Gambia 7.1.0 known restrictions/issues ====================================== -+-----------+-----------------------+------------------+ -| Installer | Scenario | Issue | -+===========+=======================+==================+ -| apex | os-ovn-nofeature-ha | YARDSTICK-1517 | -+-----------+-----------------------+------------------+ Useful links ============ diff --git a/docs/testing/developer/devguide/devguide_nsb_prox.rst b/docs/testing/developer/devguide/devguide_nsb_prox.rst index be2b5be61..44a216b75 100755 --- a/docs/testing/developer/devguide/devguide_nsb_prox.rst +++ b/docs/testing/developer/devguide/devguide_nsb_prox.rst @@ -8,6 +8,8 @@ for Telco customers, investigate the impact of new Intel compute, network and storage technologies, characterize performance, and develop optimal system architectures and configurations. +NSB PROX Supports Baremetal, Openstack and standalone configuration. + .. contents:: Prerequisites @@ -162,11 +164,11 @@ A NSB Prox test is composed of the following components :- server descriptions, in the case of baremetal the hardware description location. It also contains the name of the Traffic Generator, the SUT config file and the traffic profile description, all described below. - See nsb-test-description-label_ + See `Test Description File`_ * Traffic Profile file. Example ``prox_binsearch.yaml``. This describes the packet size, tolerated loss, initial line rate to start traffic at, test - interval etc See nsb-traffic-profile-label_ + interval etc See `Traffic Profile File`_ * Traffic Generator Config file. Usually called ``gen_<test>-<ports>.cfg``. @@ -179,7 +181,7 @@ A NSB Prox test is composed of the following components :- under test. Example traffic generator config file ``gen_l2fwd-4.cfg`` - See nsb-traffic-generator-label_ + See `Traffic Generator Config file`_ * SUT Config file. Usually called ``handle_<test>-<ports>.cfg``. @@ -193,7 +195,7 @@ A NSB Prox test is composed of the following components :- the ports to the Traffic Verifier tasks of the Traffic Generator. Example traffic generator config file ``handle_l2fwd-4.cfg`` - See nsb-sut-generator-label_ + See `SUT Config File`_ * NSB PROX Baremetal Configuration file. Usually called ``prox-baremetal-<ports>.yaml`` @@ -202,12 +204,12 @@ A NSB Prox test is composed of the following components :- This is required for baremetal only. This describes hardware, NICs, IP addresses, Network drivers, usernames and passwords. - See baremetal-config-label_ + See `Baremetal Configuration File`_ * Grafana Dashboard. Usually called ``Prox_<context>_<test>-<port>-<DateAndTime>.json`` where - * <context> Is either ``BM`` or ``heat`` + * <context> Is ``BM``,``heat``,``ovs_dpdk`` or ``sriov`` * <test> Is the a one or 2 word description of the test. * <port> is the number of ports used express as ``2Port`` or ``4Port`` * <DateAndTime> is the Date and Time expressed as a string. @@ -217,15 +219,15 @@ A NSB Prox test is composed of the following components :- Other files may be required. These are test specific files and will be covered later. -.. _nsb-test-description-label: -**Test Description File** +Test Description File +--------------------- -Here we will discuss the test description for both -baremetal and openstack. +Here we will discuss the test description for +baremetal, openstack and standalone. -*Test Description File for Baremetal* -------------------------------------- +Test Description File for Baremetal +----------------------------------- This section will introduce the meaning of the Test case description file. We will use ``tc_prox_baremetal_l2fwd-2.yaml`` as an example to @@ -239,7 +241,7 @@ Now let's examine the components of the file in detail 1. ``traffic_profile`` - This specifies the traffic profile for the test. In this case ``prox_binsearch.yaml`` is used. See - nsb-traffic-profile-label_ + `Traffic Profile File`_ 2. ``topology`` - This is either ``prox-tg-topology-1.yaml`` or ``prox-tg-topology-2.yaml`` or ``prox-tg-topology-4.yaml`` @@ -251,10 +253,13 @@ Now let's examine the components of the file in detail 4. ``interface_speed_gbps`` - This is an optional parameter. If not present the system defaults to 10Gbps. This defines the speed of the interfaces. -5. ``prox_path`` - Location of the Prox executable on the traffic +5. ``collectd`` - (Optional) This specifies we want to collect NFVI statistics + like CPU Utilization, + +6. ``prox_path`` - Location of the Prox executable on the traffic generator (Either baremetal or Openstack Virtual Machine) -6. ``prox_config`` - This is the ``SUT Config File``. +7. ``prox_config`` - This is the ``SUT Config File``. In this case it is ``handle_l2fwd-2.cfg`` A number of additional parameters can be added. This example @@ -263,6 +268,14 @@ Now let's examine the components of the file in detail options: interface_speed_gbps: 10 + traffic_config: + tolerated_loss: 0.01 + test_precision: 0.01 + packet_sizes: [64] + duration: 30 + lower_bound: 0.0 + upper_bound: 100.0 + vnf__0: prox_path: /opt/nsb_bin/prox prox_config: ``configs/handle_vpe-4.cfg`` @@ -276,55 +289,60 @@ Now let's examine the components of the file in detail ``configs/vpe_rules.lua`` : ```` prox_generate_parameter: True - ``interface_speed_gbps`` - this specifies the speed of the interface - in Gigabits Per Second. This is used to calculate pps(packets per second). - If the interfaces are of different speeds, then this specifies the speed - of the slowest interface. This parameter is optional. If omitted the - interface speed defaults to 10Gbps. + ``interface_speed_gbps`` - this specifies the speed of the interface + in Gigabits Per Second. This is used to calculate pps(packets per second). + If the interfaces are of different speeds, then this specifies the speed + of the slowest interface. This parameter is optional. If omitted the + interface speed defaults to 10Gbps. - ``prox_files`` - this specified that a number of addition files - need to be provided for the test to run correctly. This files - could provide routing information,hashing information or a - hashing algorithm and ip/mac information. + ``traffic_config`` - This allows the values here to override the values in + in the traffic_profile file. e.g. "prox_binsearch.yaml". Values provided + here override values provided in the "traffic_profile" section of the + traffic_profile file. Some, all or none of the values can be provided here. - ``prox_generate_parameter`` - this specifies that the NSB application - is required to provide information to the nsb Prox in the form - of a file called ``parameters.lua``, which contains information - retrieved from either the hardware or the openstack configuration. + The values describes the packet size, tolerated loss, initial line rate + to start traffic at, test interval etc See `Traffic Profile File`_ -7. ``prox_args`` - this specifies the command line arguments to start - prox. See `prox command line`_. + ``prox_files`` - this specified that a number of addition files + need to be provided for the test to run correctly. This files + could provide routing information,hashing information or a + hashing algorithm and ip/mac information. + + ``prox_generate_parameter`` - this specifies that the NSB application + is required to provide information to the nsb Prox in the form + of a file called ``parameters.lua``, which contains information + retrieved from either the hardware or the openstack configuration. -8. ``prox_config`` - This specifies the Traffic Generator config file. +8. ``prox_args`` - this specifies the command line arguments to start + prox. See `prox command line`_. -9. ``runner`` - This is set to ``ProxDuration`` - This specifies that the - test runs for a set duration. Other runner types are available - but it is recommend to use ``ProxDuration`` +9. ``prox_config`` - This specifies the Traffic Generator config file. - The following parrameters are supported +10. ``runner`` - This is set to ``ProxDuration`` - This specifies that the + test runs for a set duration. Other runner types are available + but it is recommend to use ``ProxDuration``. The following parameters + are supported - ``interval`` - (optional) - This specifies the sampling interval. - Default is 1 sec + ``interval`` - (optional) - This specifies the sampling interval. + Default is 1 sec - ``sampled`` - (optional) - This specifies if sampling information is - required. Default ``no`` + ``sampled`` - (optional) - This specifies if sampling information is + required. Default ``no`` - ``duration`` - This is the length of the test in seconds. Default - is 60 seconds. + ``duration`` - This is the length of the test in seconds. Default + is 60 seconds. - ``confirmation`` - This specifies the number of confirmation retests to - be made before deciding to increase or decrease line speed. Default 0. + ``confirmation`` - This specifies the number of confirmation retests to + be made before deciding to increase or decrease line speed. Default 0. -10. ``context`` - This is ``context`` for a 2 port Baremetal configuration. +11. ``context`` - This is ``context`` for a 2 port Baremetal configuration. If a 4 port configuration was required then file ``prox-baremetal-4.yaml`` would be used. This is the NSB Prox baremetal configuration file. -.. _nsb-traffic-profile-label: - -*Traffic Profile file* ----------------------- +Traffic Profile File +-------------------- This describes the details of the traffic flow. In this case ``prox_binsearch.yaml`` is used. @@ -334,8 +352,9 @@ This describes the details of the traffic flow. In this case :alt: NSB PROX Traffic Profile -1. ``name`` - The name of the traffic profile. This name should match the name - specified in the ``traffic_profile`` field in the Test Description File. +1. ``name`` - The name of the traffic profile. This name should match the + name specified in the ``traffic_profile`` field in the Test + Description File. 2. ``traffic_type`` - This specifies the type of traffic pattern generated, This name matches class name of the traffic generator. See:: @@ -396,19 +415,20 @@ See this prox_vpe.yaml as example:: lower_bound: 0.0 upper_bound: 100.0 -*Test Description File for Openstack* -------------------------------------- +Test Description File for Openstack +----------------------------------- We will use ``tc_prox_heat_context_l2fwd-2.yaml`` as a example to show you how to understand the test description file. -.. image:: images/PROX_Test_HEAT_Script1.png - :width: 800px - :alt: NSB PROX Test Description File - Part 1 + .. image:: images/PROX_Test_HEAT_Script1.png + :width: 800px + :alt: NSB PROX Test Description File - Part 1 -.. image:: images/PROX_Test_HEAT_Script2.png - :width: 800px - :alt: NSB PROX Test Description File - Part 2 + + .. image:: images/PROX_Test_HEAT_Script2.png + :width: 800px + :alt: NSB PROX Test Description File - Part 2 Now lets examine the components of the file in detail @@ -464,10 +484,64 @@ F. ``networks`` - is composed of a management network labeled ``mgmt`` port_security_enabled: False enable_dhcp: 'false' -.. _nsb-traffic-generator-label: +Test Description File for Standalone +------------------------------------ + +We will use ``tc_prox_ovs-dpdk_l2fwd-2.yaml`` as a example to show +you how to understand the test description file. + + .. image:: images/PROX_Test_ovs_dpdk_Script_1.png + :width: 800px + :alt: NSB PROX Test Standalone Description File - Part 1 + + .. image:: images/PROX_Test_ovs_dpdk_Script_2.png + :width: 800px + :alt: NSB PROX Test Standalone Description File - Part 2 + +Now lets examine the components of the file in detail + +Sections 1 to 9 are exactly the same in Baremetal and in Heat. Section +``10`` is replaced with sections A to F. Section 10 was for a baremetal +configuration file. This has no place in a heat configuration. + +A. ``file`` - Pod file for Baremetal Traffic Generator configuration: + IP Address, User/Password & Interfaces + +B. ``type`` - This defines the type of standalone configuration. + Possible values are ``StandaloneOvsDpdk`` or ``StandaloneSriov`` + +C. ``file`` - Pod file for Standalone host configuration: + IP Address, User/Password & Interfaces + +D. ``vm_deploy`` - Deploy a new VM or use an existing VM -*Traffic Generator Config file* -------------------------------- +E. ``ovs_properties`` - OVS Version, DPDK Version and configuration + to use. + +F. ``flavor``- NSB image generated when installing NSB using ansible-playbook:: + + ram- Configurable RAM for SUT VM + extra_specs + hw:cpu_sockets - Configurable number of Sockets for SUT VM + hw:cpu_cores - Configurable number of Cores for SUT VM + hw:cpu_threads- Configurable number of Threads for SUT VM + +G. ``mgmt`` - Management port of the SUT VM. Preconfig needed on TG & SUT host machines. + is the system under test. + + +H. ``xe0`` - Upline Network port + +I. ``xe1`` - Downline Network port + +J. ``uplink_0`` - Uplink Phy port of the NIC on the host. This will be used to create + the Virtual Functions. + +K. ``downlink_0`` - Downlink Phy port of the NIC on the host. This will be used to + create the Virtual Functions. + +Traffic Generator Config file +----------------------------- This section will describe the traffic generator config file. This is the same for both baremetal and heat. See this example @@ -725,10 +799,8 @@ Now let's examine the components of the file in detail to be read from. Note that the SUT workload might cause the position of the timestamp to change (i.e. due to encapsulation). -.. _nsb-sut-generator-label: - -*SUT Config file* -------------------------------- +SUT Config File +--------------- This section will describes the SUT(VNF) config file. This is the same for both baremetal and heat. See this example of ``handle_l2fwd_multiflow-2.cfg`` to @@ -892,10 +964,8 @@ Now let's examine the components of the file in detail :width: 1000px :alt: NSB PROX Config File for BNG_QOS -*Baremetal Configuration file* ------------------------------- - -.. _baremetal-config-label: +Baremetal Configuration File +---------------------------- This is required for baremetal testing. It describes the IP address of the various ports, the Network devices drivers and MAC addresses and the network @@ -933,8 +1003,8 @@ Now let's describe the sections of the file. 9. ``routing_table`` - All parameters should remain unchanged. 10. ``nd_route_tbl`` - All parameters should remain unchanged. -*Grafana Dashboard* -------------------- +Grafana Dashboard +----------------- The grafana dashboard visually displays the results of the tests. The steps required to produce a grafana dashboard are described here. @@ -987,7 +1057,7 @@ In order to run the NSB PROX test. cd /home/opnfv/repos/yardstick/samples/vnf_samples/nsut/prox b. Install prox-baremetal-2.yam and prox-baremetal-4.yaml for that - topology into this directory as per baremetal-config-label_ + topology into this directory as per `Baremetal Configuration File`_ c. Install and configure ``yardstick.conf`` :: @@ -1032,14 +1102,12 @@ Frequently Asked Questions Here is a list of frequently asked questions. -*NSB Prox does not work on Baremetal, How do I resolve this?* -------------------------------------------------------------- +NSB Prox does not work on Baremetal, How do I resolve this? +----------------------------------------------------------- If PROX NSB does not work on baremetal, problem is either in network configuration or test file. -*Solution* - 1. Verify network configuration. Execute existing baremetal test.:: yardstick --debug task start ./tc_prox_baremetal_l2fwd-4.yaml @@ -1079,10 +1147,8 @@ configuration or test file. 2. If existing baremetal works then issue is with your test. Check the traffic generator gen_<test>-<ports>.cfg to ensure it is producing a valid packet. -*How do I debug NSB Prox on Baremetal?* ---------------------------------------- - -*Solution* +How do I debug NSB Prox on Baremetal? +------------------------------------- 1. Execute the test as follows:: @@ -1148,8 +1214,8 @@ configuration or test file. dump_tx 1 0 1 -*NSB Prox works on Baremetal but not in Openstack. How do I resolve this?* --------------------------------------------------------------------------- +NSB Prox works on Baremetal but not in Openstack. How do I resolve this? +------------------------------------------------------------------------ NSB Prox on Baremetal is a lot more forgiving than NSB Prox on Openstack. A badly formed packed may still work with PROX on Baremetal. However on @@ -1157,7 +1223,6 @@ Openstack the packet must be correct and all fields of the header correct. E.g. A packet with an invalid Protocol ID would still work in Baremetal but this packet would be rejected by openstack. -*Solution* 1. Check the validity of the packet. 2. Use a known good packet in your test @@ -1165,10 +1230,8 @@ this packet would be rejected by openstack. retry. -*How do I debug NSB Prox on Openstack?* ---------------------------------------- - -*Solution* +How do I debug NSB Prox on Openstack? +------------------------------------- 1. Execute the test as follows:: @@ -1239,10 +1302,8 @@ this packet would be rejected by openstack. Now continue as baremetal. -*How do I resolve "Quota exceeded for resources"* -------------------------------------------------- - -*Solution* +How do I resolve "Quota exceeded for resources" +----------------------------------------------- This usually occurs due to 2 reasons when executing an openstack test. @@ -1276,10 +1337,8 @@ This usually occurs due to 2 reasons when executing an openstack test. openstack quota set <resource> -*Openstack Cli fails or hangs. How do I resolve this?* ------------------------------------------------------- - -*Solution* +Openstack CLI fails or hangs. How do I resolve this? +---------------------------------------------------- If it fails due to :: @@ -1310,7 +1369,7 @@ Result :: and visible. -If the Openstack ClI appears to hang, then verify the proxys and ``no_proxy`` +If the Openstack CLI appears to hang, then verify the proxys and ``no_proxy`` are set correctly. They should be similar to :: FTP_PROXY="http://<your_proxy>:<port>/" @@ -1328,8 +1387,8 @@ Where 2) 10.237.223.80 = IP Address of Controller node 3) 10.237.222.134 = IP Address of Compute Node -*How to Understand the Grafana output?* ---------------------------------------- +How to Understand the Grafana output? +------------------------------------- .. image:: images/PROX_Grafana_1.png :width: 1000px @@ -1347,50 +1406,75 @@ Where :width: 1000px :alt: NSB PROX Grafana_4 -A. Test Parameters - Test interval, Duartion, Tolerated Loss and Test Precision + .. image:: images/PROX_Grafana_5.png + :width: 1000px + :alt: NSB PROX Grafana_5 + + .. image:: images/PROX_Grafana_6.png + :width: 1000px + :alt: NSB PROX Grafana_6 + +A. Test Parameters - Test interval, Duration, Tolerated Loss and Test Precision B. No. of packets send and received during test -C. Generator Stats - packets sent, received and attempted by Generator +C. Generator Stats - Average Throughput per step (Step Duration is specified by + "Duration" field in A above) D. Packet size -E. No. of packets received by SUT +E. No. of packets sent by the generator per second per interface in millions + of packets per second. + +F. No. of packets recieved by the generator per second per interface in millions + of packets per second. + +G. No. of packets received by the SUT from the generator in millions of packets + per second. -F. No. of packets forwarded by SUT +H. No. of packets sent by the the SUT to the generator in millions of packets + per second. -G. No. of packets sent by the generator per port, for each interval. +I. No. of packets sent by the Generator to the SUT per step per interface + in millions of packets per second. -H. No. of packets received by the generator per port, for each interval. +J. No. of packets received by the Generator from the SUT per step per interface + in millions of packets per second. -I. No. of packets sent and received by the generator and lost by the SUT that +K. No. of packets sent and received by the generator and lost by the SUT that meet the success criteria -J. The change in the Percentage of Line Rate used over a test, The MAX and the +L. The change in the Percentage of Line Rate used over a test, The MAX and the MIN should converge to within the interval specified as the ``test-precision``. -K. Packet size supported during test. If *N/A* appears in any field the +M. Packet size supported during test. If *N/A* appears in any field the result has not been decided. -L. Calculated throughput in MPPS (Million Packets Per second) for this line - rate. +N. The Theretical Maximum no. of packets per second that can be sent for this + packet size. -M. No. of packets sent by the generator in MPPS +O. No. of packets sent by the generator in MPPS -N. No. of packets received by the generator in MPPS +P. No. of packets received by the generator in MPPS -O. No. of packets sent by SUT. +Q. No. of packets sent by SUT. -P. No. of packets received by the SUT +R. No. of packets received by the SUT -Q. Total no. of dropped packets -- Packets sent but not received back by the +S. Total no. of dropped packets -- Packets sent but not received back by the generator, these may be dropped by the SUT or the generator. -R. The tolerated no. of dropped packets. +T. The tolerated no. of dropped packets. -S. Test throughput in Gbps +U. Test throughput in Gbps -T. Latencey per Port +V. Latencey per Port + * Va - Port XE0 + * Vb - Port XE1 + * Vc - Port XE0 + * Vd - Port XE0 -U. CPU Utilization +W. CPU Utilization + * Wa - CPU Utilization of the Generator + * Wb - CPU Utilization of the SUT diff --git a/docs/testing/developer/devguide/images/PROX_Grafana_1.png b/docs/testing/developer/devguide/images/PROX_Grafana_1.png Binary files differindex d272edcf3..144000bb8 100644 --- a/docs/testing/developer/devguide/images/PROX_Grafana_1.png +++ b/docs/testing/developer/devguide/images/PROX_Grafana_1.png diff --git a/docs/testing/developer/devguide/images/PROX_Grafana_2.png b/docs/testing/developer/devguide/images/PROX_Grafana_2.png Binary files differindex 4f7fd4cf5..af1ebb315 100644 --- a/docs/testing/developer/devguide/images/PROX_Grafana_2.png +++ b/docs/testing/developer/devguide/images/PROX_Grafana_2.png diff --git a/docs/testing/developer/devguide/images/PROX_Grafana_3.png b/docs/testing/developer/devguide/images/PROX_Grafana_3.png Binary files differindex 5ae967698..a287670c9 100644 --- a/docs/testing/developer/devguide/images/PROX_Grafana_3.png +++ b/docs/testing/developer/devguide/images/PROX_Grafana_3.png diff --git a/docs/testing/developer/devguide/images/PROX_Grafana_4.png b/docs/testing/developer/devguide/images/PROX_Grafana_4.png Binary files differindex 5353d1c7e..6752dc324 100644 --- a/docs/testing/developer/devguide/images/PROX_Grafana_4.png +++ b/docs/testing/developer/devguide/images/PROX_Grafana_4.png diff --git a/docs/testing/developer/devguide/images/PROX_Grafana_5.png b/docs/testing/developer/devguide/images/PROX_Grafana_5.png Binary files differnew file mode 100644 index 000000000..45746d86b --- /dev/null +++ b/docs/testing/developer/devguide/images/PROX_Grafana_5.png diff --git a/docs/testing/developer/devguide/images/PROX_Grafana_6.png b/docs/testing/developer/devguide/images/PROX_Grafana_6.png Binary files differnew file mode 100644 index 000000000..5bdbcf26a --- /dev/null +++ b/docs/testing/developer/devguide/images/PROX_Grafana_6.png diff --git a/docs/testing/developer/devguide/images/PROX_Test_BM_Script.png b/docs/testing/developer/devguide/images/PROX_Test_BM_Script.png Binary files differindex c09f7bb1b..84e640a20 100644 --- a/docs/testing/developer/devguide/images/PROX_Test_BM_Script.png +++ b/docs/testing/developer/devguide/images/PROX_Test_BM_Script.png diff --git a/docs/testing/developer/devguide/images/PROX_Test_ovs_dpdk_Script_1.png b/docs/testing/developer/devguide/images/PROX_Test_ovs_dpdk_Script_1.png Binary files differnew file mode 100644 index 000000000..73f6f2920 --- /dev/null +++ b/docs/testing/developer/devguide/images/PROX_Test_ovs_dpdk_Script_1.png diff --git a/docs/testing/developer/devguide/images/PROX_Test_ovs_dpdk_Script_2.png b/docs/testing/developer/devguide/images/PROX_Test_ovs_dpdk_Script_2.png Binary files differnew file mode 100644 index 000000000..ad7d22822 --- /dev/null +++ b/docs/testing/developer/devguide/images/PROX_Test_ovs_dpdk_Script_2.png diff --git a/docs/testing/developer/devguide/images/vPE_Diagram.png b/docs/testing/developer/devguide/images/vPE_Diagram.png Binary files differnew file mode 100644 index 000000000..c3985b7d9 --- /dev/null +++ b/docs/testing/developer/devguide/images/vPE_Diagram.png diff --git a/docs/testing/user/userguide/04-installation.rst b/docs/testing/user/userguide/04-installation.rst index 2f8175c25..3ba312ce7 100644 --- a/docs/testing/user/userguide/04-installation.rst +++ b/docs/testing/user/userguide/04-installation.rst @@ -613,15 +613,15 @@ Run influxDB:: sudo -EH docker run -d --name influxdb \ -p 8083:8083 -p 8086:8086 --expose 8090 --expose 8099 \ tutum/influxdb - docker exec -it influxdb influx Configure influxDB:: + docker exec -it influxdb influx > CREATE USER root WITH PASSWORD 'root' WITH ALL PRIVILEGES > CREATE DATABASE yardstick; > use yardstick; > show MEASUREMENTS; - > quit + > exit Run Grafana:: diff --git a/docs/testing/user/userguide/10-yardstick-user-interface.rst b/docs/testing/user/userguide/10-yardstick-user-interface.rst index 76890b29a..b3056ec99 100644 --- a/docs/testing/user/userguide/10-yardstick-user-interface.rst +++ b/docs/testing/user/userguide/10-yardstick-user-interface.rst @@ -2,16 +2,32 @@ Yardstick User Interface ======================== -This interface provides a user to view the test result -in table format and also values pinned on to a graph. +This chapter describes how to generate HTML reports, used to view, store, share +or publish test results in table and graph formats. +The following layouts are available: -Command -======= -:: +* The compact HTML report layout is suitable for testcases producing a few + metrics over a short period of time. All metrics for all timestamps are + displayed in the data table and on the graph. + +* The dynamic HTML report layout consists of a wider data table, a graph, and + a tree that allows selecting the metrics to be displayed. This layout is + suitable for testcases, such as NSB ones, producing a lot of metrics over + a longer period of time. + + +Commands +======== + +To generate the compact HTML report, run:: yardstick report generate <task-ID> <testcase-filename> +To generate the dynamic HTML report, run:: + + yardstick report generate-nsb <task-ID> <testcase-filename> + Description =========== @@ -27,8 +43,8 @@ Description The graph is framed with Timestamp on x-axis and output values (differ from testcase to testcase) on y-axis with the help of -`Highcharts`_. +`Chart.js`_. .. _InfluxDB: https://www.influxdata.com/time-series-platform/influxdb/ .. _Jinja2: http://jinja.pocoo.org/docs/2.10/ -.. _Highcharts: https://www.highcharts.com/products/highcharts/ +.. _Chart.js: https://www.chartjs.org/ diff --git a/docs/testing/user/userguide/14-nsb-operation.rst b/docs/testing/user/userguide/14-nsb-operation.rst index 118042918..910985069 100644 --- a/docs/testing/user/userguide/14-nsb-operation.rst +++ b/docs/testing/user/userguide/14-nsb-operation.rst @@ -600,3 +600,33 @@ may be changed. 2. Subsection ``runner``: specifies the test duration and the interval of TG and VNF side KPIs polling. For more details, refer to :doc:`03-architecture`. + +Preparing test run of vPE test case +----------------------------------- +The vPE (Provider Edge Router) is a :term: `VNF` approximation +serving as an Edge Router. The vPE is approximated using the +``ip_pipeline`` dpdk application. + + .. image:: images/vPE_Diagram.png + :width: 800px + :alt: NSB vPE Diagram + +The ``vpe_config`` file must be passed as it is not auto generated. +The ``vpe_script`` defines the rules applied to each of the pipelines. This can be +auto generated or a file can be passed using the ``script_file`` option in +``vnf_config`` as shown below. The ``full_tm_profile_file`` option must be +used if a traffic manager is defined in ``vpe_config``. + +.. code-block:: yaml + + vnf_config: { file: './vpe_config/vpe_config_2_ports', + action_bulk_file: './vpe_config/action_bulk_512.txt', + full_tm_profile_file: './vpe_config/full_tm_profile_10G.cfg', + script_file: './vpe_config/vpe_script_sample' } + +Testcases for vPE can be found in the ``vnf_samples/nsut/vpe`` directory. +A testcase can be started with the following command as an example: + +.. code-block:: bash + + yardstick task start /yardstick/samples/vnf_samples/nsut/vpe/tc_baremetal_rfc2544_ipv4_1flow_64B_ixia.yaml diff --git a/docs/testing/user/userguide/glossary.rst b/docs/testing/user/userguide/glossary.rst index 6a153943c..cef9b69a5 100644 --- a/docs/testing/user/userguide/glossary.rst +++ b/docs/testing/user/userguide/glossary.rst @@ -13,23 +13,54 @@ Glossary API Application Programming Interface + Barometer + OPNFV NFVi Service Assurance project. Barometer upstreams changes to + collectd, OpenStack, etc to improve features related to NFVi monitoring + and service assurance. + More info on: https://opnfv-barometer.readthedocs.io/en/latest/ + + collectd + collectd is a system statistics collection daemon. + More info on: https://collectd.org/ + + context + A context describes the environment in which a yardstick testcase will + be run. It can refer to a pre-provisioned environment, or an environment + that will be set up using OpenStack or Kubernetes. + Docker Docker provisions and manages containers. Yardstick and many other OPNFV projects are deployed in containers. Docker is required to launch the containerized versions of these projects. - DPI - Deep Packet Inspection - DPDK Data Plane Development Kit + DPI + Deep Packet Inspection + DSCP Differentiated Services Code Point + flavor + A specification of virtual resources used by OpenStack in the creation + of a VM instance. + + Grafana + A visualization tool, used in Yardstick to retrieve test data from + InfluxDB and display it. Grafana works by defining dashboards, which are + combinations of visualization panes (e.g. line charts and gauges) and + forms that assist the user in formulating SQL-like queries for InfluxDB. + More info on: https://grafana.com/ + IGMP Internet Group Management Protocol + InfluxDB + One of the Dispatchers supported by Yardstick, it allows test results to + be reported to a time-series database. + More info on: https://www.influxdata.com/ + IOPS Input/Output Operations Per Second A performance measurement used to benchmark storage devices. @@ -43,6 +74,9 @@ Glossary deployment, scaling and management of containerized applications. It is one of the contexts supported in Yardstick. + MPLS + Multiprotocol Label Switching + NFV Network Function Virtualization NFV is an initiative to take network services which were traditionally run @@ -56,6 +90,10 @@ Glossary NIC Network Interface Controller + NSB + Network Services Benchmarking. A subset of Yardstick features concerned + with NFVI and VNF characterization. + OpenStack OpenStack is a cloud operating system that controls pools of compute, storage, and networking resources. OpenStack is an open source project @@ -77,6 +115,18 @@ Glossary performance in Input/Output Operations Per Second (IOPS), throttling agreements, and performance expectations at peak load + runner + The part of a Yardstick testcase that determines how the test will be run + (e.g. for x iterations, y seconds or until state z is reached). The runner + also determines when the metrics are collected/reported. + + SampleVNF + OPNFV project providing a repository of reference VNFs. + More info on: https://opnfv-samplevnf.readthedocs.io/en/latest/ + + scenario + The part of a Yardstick testcase that describes each test step. + SLA Service Level Agreement An SLA is an agreement between a service provider and a customer to @@ -92,6 +142,10 @@ Glossary SUT System Under Test + testcase + A task in Yardstick; the yaml file that is read by Yardstick to + determine how to run a test. + ToS Type of Service diff --git a/docs/testing/user/userguide/nsb/nsb-list-of-tcs.rst b/docs/testing/user/userguide/nsb/nsb-list-of-tcs.rst index 723cd6f99..6c18c7d89 100644 --- a/docs/testing/user/userguide/nsb/nsb-list-of-tcs.rst +++ b/docs/testing/user/userguide/nsb/nsb-list-of-tcs.rst @@ -33,3 +33,6 @@ NSB PROX Test Case Descriptions tc_epc_saegw_tput_relocation_landslide tc_epc_network_service_request_landslide tc_epc_ue_service_request_landslide + tc_vfw_rfc2544 + tc_vfw_rfc2544_correlated + tc_vfw_rfc3511 diff --git a/docs/testing/user/userguide/nsb/tc_vfw_rfc2544.rst b/docs/testing/user/userguide/nsb/tc_vfw_rfc2544.rst new file mode 100644 index 000000000..139990bc3 --- /dev/null +++ b/docs/testing/user/userguide/nsb/tc_vfw_rfc2544.rst @@ -0,0 +1,189 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International +.. License. +.. http://creativecommons.org/licenses/by/4.0 +.. (c) OPNFV, 2018 Intel Corporation. + +************************************************ +Yardstick Test Case Description: NSB vFW RFC2544 +************************************************ + ++------------------------------------------------------------------------------+ +| NSB vFW test for VNF characterization | +| | ++---------------+--------------------------------------------------------------+ +| test case id | tc_{context}_rfc2544_ipv4_1rule_1flow_{pkt_size}_{tg_type} | +| | | +| | * context = baremetal, heat, heat_external, ovs, sriov | +| | heat_sriov_external contexts; | +| | * tg_type = ixia (context != heat,heat_sriov_external), | +| | trex; | +| | * pkt_size = 64B - all contexts; | +| | 128B, 256B, 512B, 1024B, 1280B, 1518B - | +| | (context = heat, tg_type = ixia) | +| | | ++---------------+--------------------------------------------------------------+ +| metric | * Network Throughput; | +| | * TG Packets Out; | +| | * TG Packets In; | +| | * TG Latency; | +| | * VNF Packets Out; | +| | * VNF Packets In; | +| | * VNF Packets Fwd; | +| | * Dropped packets; | +| | | ++---------------+--------------------------------------------------------------+ +| test purpose | The VFW RFC2544 tests measure performance characteristics of | +| | the SUT (multiple ports) and sends UDP bidirectional traffic | +| | from all TG ports to SampleVNF vFW application. The | +| | application forwards received traffic based on rules | +| | provided by the user in the TC configuration and default | +| | rules created by vFW to send traffic from uplink ports to | +| | downlink and voice versa. | +| | | ++---------------+--------------------------------------------------------------+ +| configuration | The 2 ports RFC2544 test cases are listed below: | +| | | +| | * tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml | +| | * tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_trex.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_1024B_ixia.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_1280B_ixia.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_128B_ixia.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_1518B_ixia.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_256B_ixia.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_512B_ixia.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml | +| | * tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_trex.yaml | +| | * tc_heat_sriov_external_rfc2544_ipv4_1rule_1flow_64B_trex. | +| | yaml | +| | * tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex.yaml | +| | * tc_ovs_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml | +| | * tc_ovs_rfc2544_ipv4_1rule_1flow_64B_trex.yaml | +| | * tc_sriov_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml | +| | * tc_sriov_rfc2544_ipv4_1rule_1flow_64B_trex.yaml | +| | | +| | The 4 ports RFC2544 test cases are listed below: | +| | | +| | * tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia_4port.yaml | +| | * tc_tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_trex_4port. | +| | yaml | +| | * tc_tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_trex_4 | +| | port.yaml | +| | * tc_tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex_4port.yaml | +| | | +| | The scale-up RFC2544 test cases are listed below: | +| | | +| | * tc_tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex_scale-up.yaml | +| | | +| | The scale-out RFC2544 test cases are listed below: | +| | | +| | * tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex_scale_out.yaml | +| | | +| | Test duration is set as 30 sec for each test and default | +| | number of rules are applied. These can be configured | +| | | ++---------------+--------------------------------------------------------------+ +| test tool | The vFW is a DPDK application that performs basic filtering | +| | for malformed packets and dynamic packet filtering of | +| | incoming packets using the connection tracker library. | +| | | ++---------------+--------------------------------------------------------------+ +| applicability | The vFW RFC2544 test cases can be configured with different: | +| | | +| | * packet sizes; | +| | * test duration; | +| | * tolerated loss; | +| | * traffic flows; | +| | * rules; | +| | | +| | Default values exist. | +| | | ++---------------+--------------------------------------------------------------+ +| pre-test | For OpenStack test case image (yardstick-samplevnf) needs | +| conditions | to be installed into Glance with vFW and DPDK included in | +| | it (NSB install). | +| | | +| | For Baremetal tests cases vFW and DPDK must be installed on | +| | the hosts where the test is executed. The pod.yaml file must | +| | have the necessary system and NIC information. | +| | | +| | For standalone (SA) SRIOV/OvS test cases the | +| | yardstick-samplevnf image needs to be installed on hosts and | +| | pod.yaml file must be provided with necessary system, NIC | +| | information. | +| | | ++---------------+--------------------------------------------------------------+ +| test sequence | Description and expected result | +| | | ++---------------+--------------------------------------------------------------+ +| step 1 | For Baremetal test: The TG (except IXIA) and VNF are started | +| | on the hosts based on the pod file. | +| | | +| | For Heat test: Two host VMs are booted, as Traffic generator | +| | and VNF(vFW) based on the test flavor. In case of scale-out | +| | scenario the multiple VNF VMs will be started. | +| | | +| | For Heat external test: vFW VM is booted and TG (except IXIA)| +| | generator is started on the external host based on the pod | +| | file. In case of scale-out scenario the multiple VNF VMs | +| | will be deployed. | +| | | +| | For Heat SRIOV external test: vFW VM is booted with network | +| | interfaces of `direct` type which are mapped to VFs that are | +| | available to OpenStack. TG (except IXIA) is started on the | +| | external host based on the pod file. In case of scale-out | +| | scenario the multiple VNF VMs will be deployed. | +| | | +| | For SRIOV test: VF ports are created on host's PFs specified | +| | in the TC file and VM is booed using those ports and image | +| | provided in the configuration. TG (except IXIA) is started | +| | on other host connected to VNF machine based on the pod | +| | file. The vFW is started in the booted VM. In case of | +| | scale-out scenario the multiple VNF VMs will be created. | +| | | +| | For OvS-DPDK test: OvS DPDK switch is started and bridges | +| | are created with ports specified in the TC file. DPDK vHost | +| | ports are added to corresponding bridge and VM is booed | +| | using those ports and image provided in the configuration. | +| | TG (except IXIA) is started on other host connected to VNF | +| | machine based on the pod file. The vFW is started in the | +| | booted VM. In case of scale-out scenario the multiple VNF | +| | VMs will be deployed. | +| | | ++---------------+--------------------------------------------------------------+ +| step 2 | Yardstick is connected with the TG and VNF by using ssh (in | +| | case of IXIA TG is connected via TCL interface). The test | +| | will resolve the topology and instantiate all VNFs | +| | and TG and collect the KPI's/metrics. | +| | | ++---------------+--------------------------------------------------------------+ +| step 3 | The TG will send packets to the VNFs. If the number of | +| | dropped packets is more than the tolerated loss the line | +| | rate or throughput is halved. This is done until the dropped | +| | packets are within an acceptable tolerated loss. | +| | | +| | The KPI is the number of packets per second for different | +| | packet size with an accepted minimal packet loss for the | +| | default configuration. | +| | | ++---------------+--------------------------------------------------------------+ +| step 4 | In Baremetal test: The test quits the application and unbind | +| | the DPDK ports. | +| | | +| | In Heat test: All VNF VMs and TG are deleted on test | +| | completion. | +| | | +| | In SRIOV test: The deployed VM with vFW is destroyed on the | +| | host and TG (exclude IXIA) is stopped. | +| | | +| | In Heat SRIOV test: The deployed VM with vFW is destroyed, | +| | VFs are released and TG (exclude IXIA) is stopped. | +| | | +| | In OvS test: The deployed VM with vFW is destroyed on the | +| | host and OvS DPDK switch is stopped and ports are unbinded. | +| | The TG (exclude IXIA) is stopped. | +| | | ++---------------+--------------------------------------------------------------+ +| test verdict | The test case will achieve a Throughput with an accepted | +| | minimal tolerated packet loss. | ++---------------+--------------------------------------------------------------+ + diff --git a/docs/testing/user/userguide/nsb/tc_vfw_rfc2544_correlated.rst b/docs/testing/user/userguide/nsb/tc_vfw_rfc2544_correlated.rst new file mode 100644 index 000000000..de490900d --- /dev/null +++ b/docs/testing/user/userguide/nsb/tc_vfw_rfc2544_correlated.rst @@ -0,0 +1,130 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International +.. License. +.. http://creativecommons.org/licenses/by/4.0 +.. (c) OPNFV, 2018 Intel Corporation. + +************************************************************* +Yardstick Test Case Description: NSB vFW RFC2544 (correlated) +************************************************************* + ++------------------------------------------------------------------------------+ +| NSB vFW test for VNF characterization using correlated traffic | +| | ++---------------+--------------------------------------------------------------+ +| test case id | tc_{context}_rfc2544_ipv4_1rule_1flow_64B_trex_corelated | +| | | +| | * context = baremetal, heat | +| | | ++---------------+--------------------------------------------------------------+ +| metric | * Network Throughput; | +| | * TG Packets Out; | +| | * TG Packets In; | +| | * TG Latency; | +| | * VNF Packets Out; | +| | * VNF Packets In; | +| | * VNF Packets Fwd; | +| | * Dropped packets; | +| | | +| | NOTE: For correlated TCs the TG metrics are available on | +| | uplink ports. | +| | | ++---------------+--------------------------------------------------------------+ +| test purpose | The VFW RFC2544 correlated tests measure performance | +| | characteristics of the SUT (multiple ports) and sends UDP | +| | traffic from uplink TG ports to SampleVNF vFW application. | +| | The application forwards received traffic from uplink ports | +| | to downlink ports based on rules provided by the user in the | +| | TC configuration and default rules created by vFW. The VNF | +| | downlink traffic is received by another UDPReplay VNF and it | +| | is mirrored back to the VNF on the same port. Finally, the | +| | traffic is received back to the TG uplink port. | +| | | ++---------------+--------------------------------------------------------------+ +| configuration | The 2 ports RFC2544 correlated test cases are listed below: | +| | | +| | * tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_trex_corelated | +| | _traffic.yaml | +| | | +| | Multiple VNF (2, 4, 10) RFC2544 correlated test cases are | +| | listed below: | +| | | +| | * tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex_correlated | +| | _scale_10.yaml | +| | * tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex_correlated_scale | +| | _2.yaml | +| | * tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex_correlated_scale | +| | _4.yaml | +| | | +| | The scale-out RFC2544 test cases are listed below: | +| | | +| | * tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex_correlated_scale | +| | _out.yaml | +| | | +| | Test duration is set as 30 sec for each test and default | +| | number of rules are applied. These can be configured | +| | | ++---------------+--------------------------------------------------------------+ +| test tool | The vFW is a DPDK application that performs basic filtering | +| | for malformed packets and dynamic packet filtering of | +| | incoming packets using the connection tracker library. | +| | | ++---------------+--------------------------------------------------------------+ +| applicability | The vFW RFC2544 test cases can be configured with different: | +| | | +| | * packet sizes; | +| | * test duration; | +| | * tolerated loss; | +| | * traffic flows; | +| | * rules; | +| | | +| | Default values exist. | +| | | ++---------------+--------------------------------------------------------------+ +| pre-test | For OpenStack test case image (yardstick-samplevnf) needs | +| conditions | to be installed into Glance with vFW and DPDK included in | +| | it (NSB install). | +| | | +| | For Baremetal tests cases vFW and DPDK must be installed on | +| | the hosts where the test is executed. The pod.yaml file must | +| | have the necessary system and NIC information. | +| | | ++---------------+--------------------------------------------------------------+ +| test sequence | Description and expected result | +| | | ++---------------+--------------------------------------------------------------+ +| step 1 | For Baremetal test: The TG (except IXIA), vFW and UDPReplay | +| | VNFs are started on the hosts based on the pod file. | +| | | +| | For Heat test: Three host VMs are booted, as Traffic | +| | generator, vFW and UDPReplay VNF(vFW) based on the test | +| | flavor. In case of scale-out scenario the multiple vFW VNF | +| | VMs will be started. | +| | | ++---------------+--------------------------------------------------------------+ +| step 2 | Yardstick is connected with the TG, vFW and UDPReplay VNF by | +| | using ssh (in case of IXIA TG is connected via TCL | +| | interface). The test will resolve the topology and | +| | instantiate all VNFs and TG and collect the KPI's/metrics. | +| | | ++---------------+--------------------------------------------------------------+ +| step 3 | The TG will send packets to the VNFs. If the number of | +| | dropped packets is more than the tolerated loss the line | +| | rate or throughput is halved. This is done until the dropped | +| | packets are within an acceptable tolerated loss. | +| | | +| | The KPI is the number of packets per second for 64B packet | +| | size with an accepted minimal packet loss for the default | +| | configuration. | +| | | ++---------------+--------------------------------------------------------------+ +| step 4 | In Baremetal test: The test quits the application and unbind | +| | the DPDK ports. | +| | | +| | In Heat test: All VNF VMs and TG are deleted on test | +| | completion. | +| | | ++---------------+--------------------------------------------------------------+ +| test verdict | The test case will achieve a Throughput with an accepted | +| | minimal tolerated packet loss. | ++---------------+--------------------------------------------------------------+ + diff --git a/docs/testing/user/userguide/nsb/tc_vfw_rfc3511.rst b/docs/testing/user/userguide/nsb/tc_vfw_rfc3511.rst new file mode 100644 index 000000000..9051fc4df --- /dev/null +++ b/docs/testing/user/userguide/nsb/tc_vfw_rfc3511.rst @@ -0,0 +1,133 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International +.. License. +.. http://creativecommons.org/licenses/by/4.0 +.. (c) OPNFV, 2018 Intel Corporation. + +******************************************************* +Yardstick Test Case Description: NSB vFW RFC3511 (HTTP) +******************************************************* + ++------------------------------------------------------------------------------+ +| NSB vFW test for VNF characterization based on RFC3511 and IXIA | +| | ++---------------+--------------------------------------------------------------+ +| test case id | tc_{context}_http_ixload_{http_size}_Requests-65000_{type} | +| | | +| | * context = baremetal, heat_external | +| | * http_size = 1b, 4k, 64k, 256k, 512k, 1024k payload size | +| | * type = Concurrency, Connections, Throughput | +| | | ++---------------+--------------------------------------------------------------+ +| metric | * HTTP Total Throughput (Kbps); | +| | * HTTP Simulated Users; | +| | * HTTP Concurrent Connections; | +| | * HTTP Connection Rate; | +| | * HTTP Transaction Rate | +| | | ++---------------+--------------------------------------------------------------+ +| test purpose | The vFW RFC3511 tests measure performance characteristics of | +| | the SUT by sending the HTTP traffic from uplink to downlink | +| | TG ports through vFW VNF. The application forwards received | +| | traffic based on rules provided by the user in the TC | +| | configuration and default rules created by vFW to send | +| | traffic from uplink ports to downlink and voice versa. | +| | | ++---------------+--------------------------------------------------------------+ +| configuration | The 2 ports RFC3511 test cases are listed below: | +| | | +| | * tc_baremetal_http_ixload_1024k_Requests-65000 | +| | _Concurrency.yaml | +| | * tc_baremetal_http_ixload_1b_Requests-65000 | +| | _Concurrency.yaml | +| | * tc_baremetal_http_ixload_256k_Requests-65000 | +| | _Concurrency.yaml | +| | * tc_baremetal_http_ixload_4k_Requests-65000 | +| | _Concurrency.yaml | +| | * tc_baremetal_http_ixload_512k_Requests-65000 | +| | _Concurrency.yaml | +| | * tc_baremetal_http_ixload_64k_Requests-65000 | +| | _Concurrency.yaml | +| | * tc_heat_external_http_ixload_1b_Requests-10Gbps | +| | _Throughput.yaml | +| | * tc_heat_external_http_ixload_1b_Requests-65000 | +| | _Concurrency.yaml | +| | * tc_heat_external_http_ixload_1b_Requests-65000 | +| | _Connections.yaml | +| | | +| | The 4 ports RFC3511 test cases are listed below: | +| | | +| | * tc_baremetal_http_ixload_1b_Requests-65000 | +| | _Concurrency_4port.yaml | +| | | ++---------------+--------------------------------------------------------------+ +| test tool | The vFW is a DPDK application that performs basic filtering | +| | for malformed packets and dynamic packet filtering of | +| | incoming packets using the connection tracker library. | +| | | ++---------------+--------------------------------------------------------------+ +| applicability | The vFW RFC3511 test cases can be configured with different: | +| | | +| | * http payload sizes; | +| | * traffic flows; | +| | * rules; | +| | | +| | Default values exist. | +| | | ++---------------+--------------------------------------------------------------+ +| pre-test | For OpenStack test case image (yardstick-samplevnf) needs | +| conditions | to be installed into Glance with vFW and DPDK included in | +| | it (NSB install). | +| | | +| | For Baremetal tests cases vFW and DPDK must be installed on | +| | the hosts where the test is executed. The pod.yaml file must | +| | have the necessary system and NIC information. | +| | | ++---------------+--------------------------------------------------------------+ +| test sequence | Description and expected result | +| | | ++---------------+--------------------------------------------------------------+ +| step 1 | For Baremetal test: The vFW VNF is started on the hosts | +| | based on the pod file. | +| | | +| | For Heat external test: The vFW VM are deployed and booted. | +| | | ++---------------+--------------------------------------------------------------+ +| step 2 | Yardstick is connected with the TG (IxLoad) via IxLoad API | +| | and VNF by using ssh. The test will resolve the topology and | +| | instantiate all VNFs and TG and collect the KPI's/metrics. | +| | | ++---------------+--------------------------------------------------------------+ +| step 3 | The TG simulates HTTP traffic based on selected type of TC. | +| | | +| | Concurrency: | +| | The TC attempts to simulate some number of human users. | +| | The simulated users are gradually brought online until 64K | +| | users is met (the Ramp-Up phase), then taken offline (the | +| | Ramp Down phase). | +| | | +| | Connections: | +| | The TC creates some number of HTTP connections per second. | +| | It will attempt to generate the 64K of HTTP connections | +| | per second. | +| | | +| | Throughput: | +| | TC simultaneously transmits and receives TCP payload | +| | (bytes) at a certain rate measured in Megabits per second | +| | (Mbps), Kilobits per second (Kbps), or Gigabits per | +| | second. The 10 Gbits is default throughput. | +| | | +| | At the end of the TC, the KPIs are collected and stored | +| | (depends on the selected dispatcher). | +| | | ++---------------+--------------------------------------------------------------+ +| step 4 | In Baremetal test: The test quits the application and | +| | unbinds the DPDK ports. | +| | | +| | In Heat test: All VNF VMs are deleted and connections to TG | +| | are terminated. | +| | | ++---------------+--------------------------------------------------------------+ +| test verdict | The test case will try to achieve the configured HTTP | +| | Concurrency/Throughput/Connections. | ++---------------+--------------------------------------------------------------+ + diff --git a/gui/package.json b/gui/package.json index b85c75469..3d1a086fd 100644 --- a/gui/package.json +++ b/gui/package.json @@ -39,5 +39,8 @@ }, "scripts": { "test": "karma start test\\karma.conf.js" + }, + "config": { + "unsafe-perm": true } } diff --git a/requirements.txt b/requirements.txt index 43a6c7fdb..e55687914 100644 --- a/requirements.txt +++ b/requirements.txt @@ -34,7 +34,8 @@ netaddr==0.7.19 # BSD License; OSI Approved BSD License; OSI Approved netifaces==0.10.6 # MIT License; OSI Approved MIT License os-client-config==1.28.0 # OSI Approved Apache Software License osc-lib==1.8.0 # OSI Approved Apache Software License -oslo.config==5.1.0 # OSI Approved Apache Software License +oslo.log==3.41.0 # OSI Approved Apache Software License +oslo.config==5.1.0 # OSI Approved Apache Software License oslo.i18n==3.17.0 # OSI Approved Apache Software License oslo.messaging==5.36.0 # OSI Approved Apache Software License oslo.privsep==1.23.0 # OSI Approved Apache Software License diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1b_Requests-1M_Concurrency.yaml b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_concurrent_connections_ixload.yaml index 1c710b0ea..8586db677 100644 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1b_Requests-1M_Concurrency.yaml +++ b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_concurrent_connections_ixload.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017 Intel Corporation +# Copyright (c) 2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,28 +14,22 @@ --- schema: yardstick:task:0.1 +{% set page = page or "/1b.html" %} scenarios: - type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_1b-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload.yaml + traffic_profile: "../../traffic_profiles/ixload/http_ixload.yaml" + topology: agnostic_vnf_topology_ixload_2ports.yaml nodes: tg__0: trafficgen_1.yardstick vnf__0: vnf.yardstick options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True + page_object: + uplink: [{{page}}] + vnf__0: [] runner: type: Duration duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-1B.rxf # Need vlan update + ixia_profile: ../../traffic_profiles/ixload/HTTP-ConcurrentConnections_2Ports.rxf context: type: Node name: yardstick diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_4k_Requests-1M_Concurrency.yaml b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_connections_ixload.yaml index bd7223742..c2f9c426b 100644 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_4k_Requests-1M_Concurrency.yaml +++ b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_connections_ixload.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017 Intel Corporation +# Copyright (c) 2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,28 +14,22 @@ --- schema: yardstick:task:0.1 +{% set page = page or "/1b.html" %} scenarios: - type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_4k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload.yaml + traffic_profile: "../../traffic_profiles/ixload/http_ixload.yaml" + topology: agnostic_vnf_topology_ixload_2ports.yaml nodes: tg__0: trafficgen_1.yardstick vnf__0: vnf.yardstick options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True + page_object: + uplink: [{{page}}] + vnf__0: [] runner: type: Duration duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-4K.rxf # Need vlan update + ixia_profile: ../../traffic_profiles/ixload/HTTP-Connections_2Ports.rxf context: type: Node name: yardstick diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_64k_Requests-1M_Concurrency.yaml b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_simulated_users_ixload.yaml index fe4e7f1ab..b5d341915 100644 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_64k_Requests-1M_Concurrency.yaml +++ b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_simulated_users_ixload.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017 Intel Corporation +# Copyright (c) 2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,28 +14,25 @@ --- schema: yardstick:task:0.1 +{% set users = users or "10000" %} +{% set page = page or "/1b.html" %} scenarios: - type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_64k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload.yaml + traffic_profile: "../../traffic_profiles/ixload/http_ixload.yaml" + topology: agnostic_vnf_topology_ixload_2ports.yaml nodes: tg__0: trafficgen_1.yardstick vnf__0: vnf.yardstick options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True + simulated_users: + uplink: [{{users}}] + page_object: + uplink: [{{page}}] + vnf__0: [] runner: type: Duration duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-64K.rxf # Need vlan update + ixia_profile: ../../traffic_profiles/ixload/HTTP-SimulatedUsers_2Ports.rxf context: type: Node name: yardstick diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1flow_64B_trex.yaml b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_throughput_ixload.yaml index a2595f62a..0125a7191 100644 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1flow_64B_trex.yaml +++ b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_throughput_ixload.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017 Intel Corporation +# Copyright (c) 2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,34 +14,24 @@ --- schema: yardstick:task:0.1 +{% set page = page or "/1b.html" %} scenarios: - type: NSPerf - traffic_profile: ../../traffic_profiles/ipv4_throughput.yaml - topology: firewall-tg-topology.yaml + traffic_profile: "../../traffic_profiles/ixload/http_ixload.yaml" + topology: agnostic_vnf_topology_ixload_2ports.yaml nodes: tg__0: trafficgen_1.yardstick vnf__0: vnf.yardstick options: - framesize: - private: {64B: 100} - public: {64B: 100} - flow: - src_ip: - - '152.16.100.181' - dst_ip: - - '152.16.40.181' - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - nfvi_enable: True + page_object: + uplink: [{{page}}] + vnf__0: [] runner: - type: Iteration - iterations: 2 - interval: 35 + type: Duration + duration: 2 + ixia_profile: ../../traffic_profiles/ixload/HTTP-Throughput_2Ports.rxf context: type: Node name: yardstick nfvi_type: baremetal - file: /etc/yardstick/nodes/pod.yaml + file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_transactions_ixload.yaml b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_transactions_ixload.yaml new file mode 100644 index 000000000..d82acb2f1 --- /dev/null +++ b/samples/vnf_samples/nsut/agnostic/tc_baremetal_http_transactions_ixload.yaml @@ -0,0 +1,37 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +schema: yardstick:task:0.1 +{% set page = page or "/1b.html" %} +scenarios: +- type: NSPerf + traffic_profile: "../../traffic_profiles/ixload/http_ixload.yaml" + topology: agnostic_vnf_topology_ixload_2ports.yaml + nodes: + tg__0: trafficgen_1.yardstick + vnf__0: vnf.yardstick + options: + page_object: + uplink: [{{page}}] + vnf__0: [] + runner: + type: Duration + duration: 2 + ixia_profile: ../../traffic_profiles/ixload/HTTP-Transactions_2Ports.rxf +context: + type: Node + name: yardstick + nfvi_type: baremetal + file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_1518B_ixia.yaml b/samples/vnf_samples/nsut/agnostic/tc_baremetal_rfc2544_latency_ipv4_64B_ixia_L3.yaml index ab2a633a5..1610193d0 100644 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_1518B_ixia.yaml +++ b/samples/vnf_samples/nsut/agnostic/tc_baremetal_rfc2544_latency_ipv4_64B_ixia_L3.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2018 Intel Corporation +# Copyright (c) 2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,30 +12,38 @@ # See the License for the specific language governing permissions and # limitations under the License. +{% set vports = vports or 2 %} --- schema: yardstick:task:0.1 scenarios: - type: NSPerf - traffic_profile: "../../traffic_profiles/ixia_ipv4_latency.yaml" - topology: firewall_vnf_topology_ixia.yaml + traffic_profile: ../../traffic_profiles/ixia_ipv4_latency_L3.yaml + topology: agnostic_vnf_topology_ixia_{{ vports }}ports.yaml + ixia_config: IxiaL3 + extra_args: + vports: {{ vports }} nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick + tg__0: tg_0.yardstick + vnf__0: vnf_0.yardstick options: framesize: - private: {1518B: 100} - public: {1518B: 100} + uplink: {64B: 100} + downlink: {64B: 100} flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] + src_ip: +{% for vport in range(0,vports,2|int) %} + - '152.{{ vport }}.0.1-152.{{ vport }}.0.50' +{% endfor %} + dst_ip: +{% for vport in range(1,vports,2|int) %} + - '152.{{ vport }}.1.1-152.{{ vport }}.1.150' +{% endfor %} count: 1 traffic_type: 4 rfc2544: allowed_drop_rate: 0.0001 - 0.0001 vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True + [] runner: type: Iteration iterations: 10 diff --git a/samples/vnf_samples/nsut/bng/tc_bng_pppoe_rfc2544_ixia_8ports_1port_congested_IMIX.yaml b/samples/vnf_samples/nsut/bng/tc_bng_pppoe_rfc2544_ixia_8ports_1port_congested_IMIX.yaml new file mode 100644 index 000000000..2c2010a11 --- /dev/null +++ b/samples/vnf_samples/nsut/bng/tc_bng_pppoe_rfc2544_ixia_8ports_1port_congested_IMIX.yaml @@ -0,0 +1,70 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +{% set sessions_per_port = sessions_per_port or 4000 %} +{% set sessions_per_svlan = sessions_per_svlan or 1000 %} +schema: yardstick:task:0.1 +description: > + vBNG RFC2544 test case with QoS base line with link congestion. + Test case creates PPPoE sessions, runs traffic from two core ports + to one access port causing congestion of that port (traffic from + other access ports are splitting between remaining core ports) + and measures packets drop rate on all ports for each priority flow. +scenarios: +- type: NSPerf + traffic_profile: "../../traffic_profiles/ixia_ipv4_latency_vbng_1port_congested-8.yaml" + topology: "../agnostic/agnostic_vnf_topology_ixia_8ports.yaml" + ixia_config: IxiaPppoeClient + nodes: + tg__0: tg_0.yardstick + vnf__0: vnf_0.yardstick + options: + pppoe_client: # access network + sessions_per_port: {{ sessions_per_port }} + sessions_per_svlan: {{ sessions_per_svlan }} + pap_user: 'wfnos' + pap_password: '' + ip: [{'tg__0': 'xe0'}, {'tg__0': 'xe2'}, {'tg__0': 'xe4'}, {'tg__0': 'xe6'}] + s_vlan: 100 # s-vlan applies per device group + c_vlan: 1000 # c-vlan applies per subscriber + ipv4_client: # core network + sessions_per_port: 1 + sessions_per_vlan: 1 + ip: [{'tg__0': 'xe1'}, {'tg__0': 'xe3'}, {'tg__0': 'xe5'}, {'tg__0': 'xe7'}] + gateway_ip: [{'vnf__0': 'xe1'}, {'vnf__0': 'xe3'}, {'vnf__0': 'xe5'}, {'vnf__0': 'xe7'}] + vlan: 101 + bgp: + bgp_type: external + dut_ip: 10.0.0.3 + as_number: 65000 + framesize: + uplink: {70B: 33, 940B: 33, 1470B: 34} + downlink: {68B: 3, 932B: 1, 1470B: 96} + flow: + src_ip: [{'tg__0': 'xe0'}, {'tg__0': 'xe2'}, {'tg__0': 'xe4'}, {'tg__0': 'xe6'}] + dst_ip: [{'tg__0': 'xe1'}, {'tg__0': 'xe3'}, {'tg__0': 'xe5'}, {'tg__0': 'xe7'}] + count: 1 + traffic_type: 4 + rfc2544: + allowed_drop_rate: 0.0001 - 0.0001 + runner: + type: Iteration + iterations: 10 + interval: 75 +context: + type: Node + name: yardstick + nfvi_type: baremetal + file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/bng/tc_bng_pppoe_rfc2544_ixia_IMIX_scale_up.yaml b/samples/vnf_samples/nsut/bng/tc_bng_pppoe_rfc2544_ixia_IMIX_scale_up.yaml new file mode 100644 index 000000000..f0696ab24 --- /dev/null +++ b/samples/vnf_samples/nsut/bng/tc_bng_pppoe_rfc2544_ixia_IMIX_scale_up.yaml @@ -0,0 +1,88 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +{% set sessions_per_port = sessions_per_port or 4000 %} +{% set sessions_per_svlan = sessions_per_svlan or 1000 %} +{% set vports = vports or 2 %} +{% set svlans_per_port = sessions_per_port / sessions_per_svlan %} +schema: yardstick:task:0.1 +description: > + vBNG RFC2544 test case with QoS base line without link congestion. + Test case creates PPPoE sessions, runs traffic on maximum throughput + and measures packets drop rate on all ports for each priority flow. +scenarios: +- type: NSPerf + traffic_profile: "../../traffic_profiles/ixia_ipv4_latency_vbng_scale_up.yaml" + topology: "../agnostic/agnostic_vnf_topology_ixia_{{ vports }}ports.yaml" + ixia_config: IxiaPppoeClient + extra_args: + svlans_per_port: {{ svlans_per_port|int }} + access_vports_num: {{ vports|int / 2 }} + nodes: + tg__0: tg_0.yardstick + vnf__0: vnf_0.yardstick + options: + pppoe_client: # access network + sessions_per_port: {{ sessions_per_port }} + sessions_per_svlan: {{ sessions_per_svlan }} + pap_user: 'wfnos' + pap_password: '' + ip: +{% for vnf_num in range(0, vports|int, 2) %} + - {'tg__0': 'xe{{ vnf_num }}'} +{% endfor %} + s_vlan: 100 # s-vlan applies per device group + c_vlan: 1000 # c-vlan applies per subscriber + ipv4_client: # core network + sessions_per_port: 1 + sessions_per_vlan: 1 + ip: +{% for vnf_num in range(1, vports|int, 2) %} + - {'tg__0': 'xe{{ vnf_num }}'} +{% endfor %} + gateway_ip: +{% for vnf_num in range(1, vports|int, 2) %} + - {'vnf__0': 'xe{{ vnf_num }}'} +{% endfor %} + vlan: 101 + bgp: + bgp_type: external + dut_ip: 10.0.0.3 + as_number: 65000 + framesize: + uplink: {70B: 33, 940B: 33, 1470B: 34} + downlink: {68B: 3, 932B: 1, 1470B: 96} + flow: + src_ip: +{% for vnf_num in range(0, vports|int, 2) %} + - {'tg__0': 'xe{{ vnf_num }}'} +{% endfor %} + dst_ip: +{% for vnf_num in range(1, vports|int, 2) %} + - {'tg__0': 'xe{{ vnf_num }}'} +{% endfor %} + count: 1 + traffic_type: 4 + rfc2544: + allowed_drop_rate: 0.0001 - 0.0001 + runner: + type: Iteration + iterations: 10 + interval: 75 +context: + type: Node + name: yardstick + nfvi_type: baremetal + file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/firewall-tg-topology-4port.yaml b/samples/vnf_samples/nsut/firewall/firewall-tg-topology-4port.yaml deleted file mode 100644 index 105f85d99..000000000 --- a/samples/vnf_samples/nsut/firewall/firewall-tg-topology-4port.yaml +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -nsd:nsd-catalog: - nsd: - - id: 3tg-topology - name: 3tg-topology - short-name: 3tg-topology - description: 3tg-topology - constituent-vnfd: - - member-vnf-index: '1' - vnfd-id-ref: tg__0 - VNF model: ../../vnf_descriptors/tg_rfc2544_tpl.yaml #VNF type - - member-vnf-index: '2' - vnfd-id-ref: vnf__0 - VNF model: ../../vnf_descriptors/firewall_vnf.yaml #VNF type - - vld: - - id: uplink_0 - name: tg__0 to vnf__0 link 1 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe0 - vnfd-id-ref: tg__0 - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe0 - vnfd-id-ref: vnf__0 - - id: downlink_0 - name: vnf__0 to tg__0 link 2 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe1 - vnfd-id-ref: vnf__0 - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe1 - vnfd-id-ref: tg__0 - - - id: uplink_1 - name: tg__0 to vnf__0 link 3 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe2 - vnfd-id-ref: tg__0 - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe2 - vnfd-id-ref: vnf__0 - - id: downlink_1 - name: vnf__0 to tg__0 link 4 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe3 - vnfd-id-ref: vnf__0 - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe3 - vnfd-id-ref: tg__0 diff --git a/samples/vnf_samples/nsut/firewall/firewall-tg-topology.yaml b/samples/vnf_samples/nsut/firewall/firewall-tg-topology.yaml deleted file mode 100644 index b93137be5..000000000 --- a/samples/vnf_samples/nsut/firewall/firewall-tg-topology.yaml +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -nsd:nsd-catalog: - nsd: - - id: 2node-topology - name: 2node-topology - short-name: 2node-topology - description: 2node-topology - constituent-vnfd: - - member-vnf-index: '1' - vnfd-id-ref: tg__0 - VNF model: ../../vnf_descriptors/tg_rfc2544_tpl.yaml #VNF type - - member-vnf-index: '2' - vnfd-id-ref: vnf__0 - VNF model: ../../vnf_descriptors/firewall_vnf.yaml #VNF type - - vld: - - id: uplink_0 - name: tg__0 to vnf__0 link 1 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe0 - vnfd-id-ref: tg__0 - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe0 - vnfd-id-ref: vnf__0 - - - id: downlink_0 - name: vnf__0 to tg__0 link 2 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe1 - vnfd-id-ref: vnf__0 - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe1 - vnfd-id-ref: tg__0 diff --git a/samples/vnf_samples/nsut/firewall/firewall_vnf_topology_ixia_4port.yaml b/samples/vnf_samples/nsut/firewall/firewall_vnf_topology_ixia_4port.yaml deleted file mode 100644 index 411c63d8a..000000000 --- a/samples/vnf_samples/nsut/firewall/firewall_vnf_topology_ixia_4port.yaml +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -nsd:nsd-catalog: - nsd: - - id: vFW - name: vFW - short-name: vFW - description: scenario with vFW VNF - constituent-vnfd: - - member-vnf-index: '1' - vnfd-id-ref: tg__0 - VNF model: ../../vnf_descriptors/ixia_rfc2544_tpl.yaml - - member-vnf-index: '2' - vnfd-id-ref: vnf__0 - VNF model: ../../vnf_descriptors/firewall_vnf.yaml - - vld: - - id: uplink_0 - name: tg__0 to vnf__0 link 1 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe0 - vnfd-id-ref: tg__0 - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe0 - vnfd-id-ref: vnf__0 - - - id: downlink_0 - name: vnf__0 to tg__0 link 2 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe1 - vnfd-id-ref: vnf__0 - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe1 - vnfd-id-ref: tg__0 - - - id: uplink_1 - name: tg__0 to vnf__0 link 3 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe2 - vnfd-id-ref: tg__0 - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe2 - vnfd-id-ref: vnf__0 - - - id: downlink_1 - name: vnf__0 to tg__0 link 4 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe3 - vnfd-id-ref: vnf__0 - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe3 - vnfd-id-ref: tg__0 diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1024k_Requests-1M_Concurrency.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1024k_Requests-1M_Concurrency.yaml deleted file mode 100644 index 20b26a984..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1024k_Requests-1M_Concurrency.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_1024k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Duration - duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-1024K.rxf # Need vlan update -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1024k_Requests-1M_Concurrency_4port.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1024k_Requests-1M_Concurrency_4port.yaml deleted file mode 100644 index dd6040ecf..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1024k_Requests-1M_Concurrency_4port.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_1024k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload_4port.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 2, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Duration - duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1024K.rxf # Need vlan update -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1b_Requests-1M_Concurrency_4port.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1b_Requests-1M_Concurrency_4port.yaml deleted file mode 100644 index bc68d4c95..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_1b_Requests-1M_Concurrency_4port.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_1b-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload_4port.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 2, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Duration - duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1B.rxf # Need vlan update -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_256k_Requests-1M_Concurrency.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_256k_Requests-1M_Concurrency.yaml deleted file mode 100644 index cbdf03711..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_256k_Requests-1M_Concurrency.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_256k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Duration - duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-256K.rxf # Need vlan update -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_256k_Requests-1M_Concurrency_4port.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_256k_Requests-1M_Concurrency_4port.yaml deleted file mode 100644 index cab1254a6..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_256k_Requests-1M_Concurrency_4port.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_256k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload_4port.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 2, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Duration - duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-256K.rxf # Need vlan update -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_4k_Requests-1M_Concurrency_4port.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_4k_Requests-1M_Concurrency_4port.yaml deleted file mode 100644 index a66b820ca..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_4k_Requests-1M_Concurrency_4port.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_4k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload_4port.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 2, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Duration - duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-4K.rxf # Need vlan update -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_64k_Requests-1M_Concurrency_4port.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_64k_Requests-1M_Concurrency_4port.yaml deleted file mode 100644 index ed9a777bd..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_http_ixload_64k_Requests-1M_Concurrency_4port.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/http_tests/HTTP_64k-requests_1M_concurrency.yaml" - topology: firewall_vnf_topology_ixload_4port.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 2, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Duration - duration: 2 - ixia_profile: ../../traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-64K.rxf # Need vlan update -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_1518B_ixia_4port.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_1518B_ixia_4port.yaml deleted file mode 100644 index 03ceaafcb..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_1518B_ixia_4port.yaml +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright (c) 2016-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/ixia_ipv4_latency.yaml" - topology: firewall_vnf_topology_ixia_4port.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {1518B: 100} - public: {1518B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}, {'tg__0': 'xe2'}] - dst_ip: [{'tg__0': 'xe1'}, {'tg__0': 'xe3'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 2, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Iteration - iterations: 10 - interval: 35 -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia_4port.yaml -#/etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml deleted file mode 100644 index 0da6e427e..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright (c) 2016-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/ixia_ipv4_latency.yaml" - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Iteration - iterations: 10 - interval: 35 -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia_4port.yaml b/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia_4port.yaml deleted file mode 100644 index 6850fd8eb..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_baremetal_rfc2544_ipv4_1rule_1flow_64B_ixia_4port.yaml +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright (c) 2016-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: "../../traffic_profiles/ixia_ipv4_latency.yaml" - topology: firewall_vnf_topology_ixia_4port.yaml - nodes: - tg__0: trafficgen_1.yardstick - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}, {'tg__0': 'xe2'}] - dst_ip: [{'tg__0': 'xe1'}, {'tg__0': 'xe3'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 2, worker_config: '1C/1T', worker_threads: 1} - nfvi_enable: True - runner: - type: Iteration - iterations: 10 - interval: 35 -context: - type: Node - name: yardstick - nfvi_type: baremetal - file: /etc/yardstick/nodes/pod_ixia_4port.yaml -#/etc/yardstick/nodes/pod_ixia.yaml diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1024B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1024B_ixia.yaml deleted file mode 100644 index 235c6fc8e..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1024B_ixia.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (c) 2017-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ixia_ipv4_latency.yaml - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick1 - vnf__0: vnf.yardstick - options: - framesize: - private: {1024B: 100} - public: {1024B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: yardstick1 - type: Node - file: ixia.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - vld_id: downlink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - vld_id: uplink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1280B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1280B_ixia.yaml deleted file mode 100644 index 5e56847b5..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1280B_ixia.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (c) 2017-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ixia_ipv4_latency.yaml - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick1 - vnf__0: vnf.yardstick - options: - framesize: - private: {1280B: 100} - public: {1280B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: yardstick1 - type: Node - file: ixia.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - vld_id: downlink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - vld_id: uplink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_128B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_128B_ixia.yaml deleted file mode 100644 index 2286fcb6c..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_128B_ixia.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (c) 2017-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ixia_ipv4_latency.yaml - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick1 - vnf__0: vnf.yardstick - options: - framesize: - private: {128B: 100} - public: {128B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: yardstick1 - type: Node - file: ixia.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - vld_id: downlink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - vld_id: uplink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1518B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1518B_ixia.yaml deleted file mode 100644 index 680cf7cab..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_1518B_ixia.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (c) 2017-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ixia_ipv4_latency.yaml - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick1 - vnf__0: vnf.yardstick - options: - framesize: - private: {1518B: 100} - public: {1518B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: yardstick1 - type: Node - file: ixia.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - vld_id: downlink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - vld_id: uplink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_256B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_256B_ixia.yaml deleted file mode 100644 index 245236a48..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_256B_ixia.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (c) 2017-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ixia_ipv4_latency.yaml - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick1 - vnf__0: vnf.yardstick - options: - framesize: - private: {256B: 100} - public: {256B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: yardstick1 - type: Node - file: ixia.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - vld_id: downlink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - vld_id: uplink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_512B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_512B_ixia.yaml deleted file mode 100644 index 3a100ede7..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_512B_ixia.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (c) 2017-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ixia_ipv4_latency.yaml - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick1 - vnf__0: vnf.yardstick - options: - framesize: - private: {512B: 100} - public: {512B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: yardstick1 - type: Node - file: ixia.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - vld_id: downlink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - vld_id: uplink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml deleted file mode 100644 index f334aa916..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_ixia.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright (c) 2017-2018 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ixia_ipv4_latency.yaml - topology: firewall_vnf_topology_ixia.yaml - nodes: - tg__0: trafficgen_1.yardstick1 - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: yardstick1 - type: Node - file: ixia.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - vld_id: downlink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - vld_id: uplink_0 - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_trex.yaml b/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_trex.yaml deleted file mode 100644 index fec585190..000000000 --- a/samples/vnf_samples/nsut/firewall/tc_heat_external_rfc2544_ipv4_1rule_1flow_64B_trex.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright (c) 2016-2017 Intel Corporation -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - ---- -schema: yardstick:task:0.1 -scenarios: -- type: NSPerf - traffic_profile: ../../traffic_profiles/ipv4_throughput.yaml - topology: firewall-tg-topology.yaml - nodes: - tg__0: trafficgen_1.baremetal - vnf__0: vnf.yardstick - options: - framesize: - private: {64B: 100} - public: {64B: 100} - flow: - src_ip: [{'tg__0': 'xe0'}] - dst_ip: [{'tg__0': 'xe1'}] - count: 1 - traffic_type: 4 - rfc2544: - allowed_drop_rate: 0.0001 - 0.0001 - vnf__0: - rules: acl_1rule.yaml - vnf_config: {lb_config: 'SW', lb_count: 1, worker_config: '1C/1T', worker_threads: 1} - runner: - type: Iteration - iterations: 10 - interval: 35 -contexts: - # put node context first, so we don't HEAT deploy if node has errors - - name: baremetal - type: Node - file: trex-baremetal.yml - - name: yardstick - image: yardstick-samplevnfs - flavor: - vcpus: 10 - ram: 20480 - disk: 6 - extra_specs: - hw:cpu_sockets: 1 - hw:cpu_cores: 10 - hw:cpu_threads: 1 - user: ubuntu - placement_groups: - pgrp1: - policy: "availability" - servers: - vnf: - floating_ip: true - placement: "pgrp1" - networks: - mgmt: - cidr: '10.0.1.0/24' - xe0: - cidr: '10.0.2.0/24' - gateway_ip: 'null' - provider: true - physical_network: phystenant1 - port_security_enabled: False - xe1: - cidr: '10.0.3.0/24' - gateway_ip: 'null' - provider: true - physical_network: phystenant2 - port_security_enabled: False diff --git a/samples/vnf_samples/nsut/prox/configs/gen_all-2.cfg b/samples/vnf_samples/nsut/prox/configs/gen_all-2.cfg index 1ca3f7791..8708d562e 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_all-2.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_all-2.cfg @@ -20,11 +20,11 @@ no-output=no ; disable DPDK debug output [port 0] name=p0 mac=hardware + [port 1] name=p1 mac=hardware - [defaults] mempool size=4K @@ -46,7 +46,8 @@ mode=gen tx port=p0 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 00 00 00 01 00 00 00 02 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d 00 00 00 01 00 00 00 02 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 2] name=gen 1 @@ -55,7 +56,8 @@ mode=gen tx port=p1 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 00 00 00 01 00 00 00 03 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d 00 00 00 01 00 00 00 03 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 3] task=0 diff --git a/samples/vnf_samples/nsut/prox/configs/gen_buffering-1.cfg b/samples/vnf_samples/nsut/prox/configs/gen_buffering-1.cfg index 6deefa82f..925ff0fb4 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_buffering-1.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_buffering-1.cfg @@ -42,7 +42,8 @@ mode=gen tx port=p0 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 2] name=P1 diff --git a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-2.cfg b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-2.cfg index c1939c06c..d344d3a48 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-2.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-2.cfg @@ -53,15 +53,19 @@ mode=gen tx port=p0 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 08 55 7b -; src_ip: 152.16.100.0/8 +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 24 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 10 55 7b 00 01 02 03 04 05 06 07 +; src_ip: 152.16.100.0/28 random=0000XXX1 rand_offset=29 -; dst_ip: 152.16.100.0/8 +; dst_ip: 152.16.100.0/28 random=0000XXX0 rand_offset=33 +; src_port: 5000-5007, dst_port: 5000-5007 random=0001001110001XXX0001001110001XXX rand_offset=34 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 2] name=p1 @@ -70,16 +74,19 @@ mode=gen tx port=p1 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac1} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 98 10 28 01 98 10 28 02 13 88 13 88 00 08 55 7b -; src_ip: 152.16.40.0/8 -random=1001100000010000001010000000XXXX -rand_offset=26 -; dst_ip: 152.16.40.0/8 -random=1001100000010000001010000000XXXX -rand_offset=30 +pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 24 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 10 55 7b 00 01 02 03 04 05 06 07 +; src_ip: 152.16.100.0/28 +random=0000XXX1 +rand_offset=29 +; dst_ip: 152.16.100.0/28 +random=0000XXX0 +rand_offset=33 +; src_port: 5000-5007, dst_port: 5000-5007 random=0001001110001XXX0001001110001XXX rand_offset=34 - +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 3] name=rec 0 @@ -87,6 +94,8 @@ task=0 mode=lat rx port=p0 lat pos=42 +signature pos=46 +signature=0xcafedeca [core 4] name=rec 1 @@ -94,3 +103,5 @@ task=0 mode=lat rx port=p1 lat pos=42 +signature pos=46 +signature=0xcafedeca diff --git a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-4.cfg b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-4.cfg index f1e158414..c3c7c25d7 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-4.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_multiflow-4.cfg @@ -27,21 +27,29 @@ $sut_mac3=@@dst_mac3 [port 0] name=p0 mac=hardware +rx desc=2048 +tx desc=2048 promiscuous=yes [port 1] name=p1 mac=hardware +rx desc=2048 +tx desc=2048 promiscuous=yes [port 2] name=p2 mac=hardware +rx desc=2048 +tx desc=2048 promiscuous=yes [port 3] name=p3 mac=hardware +rx desc=2048 +tx desc=2048 promiscuous=yes [defaults] @@ -61,15 +69,19 @@ mode=gen tx port=p0 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 08 55 7b -; src_ip: 152.16.100.0/8 +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 24 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 10 55 7b 00 01 02 03 04 05 06 07 +; src_ip: 152.16.100.0/28 random=0000XXX1 rand_offset=29 -; dst_ip: 152.16.100.0/8 +; dst_ip: 152.16.100.0/28 random=0000XXX0 rand_offset=33 +; src_port: 5000-5007, dst_port: 5000-5007 random=0001001110001XXX0001001110001XXX rand_offset=34 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 2] name=p1 @@ -78,15 +90,19 @@ mode=gen tx port=p1 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac1} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 08 55 7b -; src_ip: 152.16.100.0/8 +pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 24 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 10 55 7b 00 01 02 03 04 05 06 07 +; src_ip: 152.16.100.0/28 random=0000XXX1 rand_offset=29 -; dst_ip: 152.16.100.0/8 +; dst_ip: 152.16.100.0/28 random=0000XXX0 rand_offset=33 +; src_port: 5000-5007, dst_port: 5000-5007 random=0001001110001XXX0001001110001XXX rand_offset=34 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 3] name=p2 @@ -95,15 +111,19 @@ mode=gen tx port=p2 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac2} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 08 55 7b -; src_ip: 152.16.100.0/8 +pkt inline=${sut_mac2} 70 00 00 00 00 03 08 00 45 00 00 24 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 10 55 7b 00 01 02 03 04 05 06 07 +; src_ip: 152.16.100.0/28 random=0000XXX1 rand_offset=29 -; dst_ip: 152.16.100.0/8 +; dst_ip: 152.16.100.0/28 random=0000XXX0 rand_offset=33 +; src_port: 5000-5007, dst_port: 5000-5007 random=0001001110001XXX0001001110001XXX rand_offset=34 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 4] name=p3 @@ -112,36 +132,52 @@ mode=gen tx port=p3 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac3} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 08 55 7b -; src_ip: 152.16.100.0/8 +pkt inline=${sut_mac3} 70 00 00 00 00 04 08 00 45 00 00 24 00 01 00 00 40 11 f7 7d 98 10 64 01 98 10 64 02 13 88 13 88 00 10 55 7b 00 01 02 03 04 05 06 07 +; src_ip: 152.16.100.0/28 random=0000XXX1 rand_offset=29 -; dst_ip: 152.16.100.0/8 +; dst_ip: 152.16.100.0/28 random=0000XXX0 rand_offset=33 +; src_port: 5000-5007, dst_port: 5000-5007 random=0001001110001XXX0001001110001XXX rand_offset=34 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 5] name=rec 0 task=0 mode=lat rx port=p0 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 6] name=rec 1 task=0 mode=lat rx port=p1 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 7] name=rec 2 task=0 mode=lat rx port=p2 +lat pos=42 +signature pos=46 +signature=0xcafedeca [core 8] name=rec 3 task=0 mode=lat rx port=p3 +lat pos=42 +signature pos=46 +signature=0xcafedeca diff --git a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-2.cfg b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-2.cfg index 016a6b29c..e20edc199 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-2.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-2.cfg @@ -21,6 +21,7 @@ no-output=no ; disable DPDK debug output [port 0] name=p0 mac=hardware + [port 1] name=p1 mac=hardware @@ -46,7 +47,8 @@ mode=gen tx port=p0 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 2] name=p1 @@ -55,7 +57,8 @@ mode=gen tx port=p1 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 3] task=0 diff --git a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-4.cfg b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-4.cfg index cb52d6c87..8dc4716bc 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-4.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_l2fwd_pktTouch-4.cfg @@ -21,12 +21,15 @@ no-output=no ; disable DPDK debug output [port 0] name=p0 mac=hardware + [port 1] name=p1 mac=hardware + [port 2] name=p2 mac=hardware + [port 3] name=p3 mac=hardware @@ -54,7 +57,8 @@ mode=gen tx port=p0 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 2] name=p1 @@ -63,7 +67,8 @@ mode=gen tx port=p1 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 3] name=p2 @@ -72,7 +77,8 @@ mode=gen tx port=p2 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac2} 70 00 00 00 00 03 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac2} 70 00 00 00 00 03 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 4] name=p3 @@ -81,7 +87,8 @@ mode=gen tx port=p3 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac3} 70 00 00 00 00 04 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac3} 70 00 00 00 00 04 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 13 88 13 88 00 0c 55 7b 42 43 44 45 +lat pos=42 [core 5] task=0 diff --git a/samples/vnf_samples/nsut/prox/configs/gen_lw_aftr-4.cfg b/samples/vnf_samples/nsut/prox/configs/gen_lw_aftr-4.cfg index dba589590..085c41b9c 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_lw_aftr-4.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_lw_aftr-4.cfg @@ -60,7 +60,7 @@ mode=gen tx port=lwB4_0 bps=1250000000 ; Ethernet + IPv6 + IPv4 + UDP -pkt inline=${sut_mac1} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 1c 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 1c 34 85 00 00 20 11 00 00 ab cd 01 01 ab cd 02 01 00 00 66 66 00 08 00 00 +pkt inline=${sut_mac1} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 20 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 20 34 85 00 00 20 11 00 00 ab cd 01 01 ab cd 02 01 00 00 66 66 00 0c 00 00 82 83 84 85 ; src_ipv6: fe80::200:ff:0:[0000..ffff] random=XXXXXXXXXXXXXXXX rand_offset=36 @@ -70,6 +70,7 @@ rand_offset=68 ; src_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=74 +lat pos=82 [core 2] name=tun_0b @@ -78,16 +79,17 @@ mode=gen tx port=lwB4_0 bps=1250000000 ; Ethernet + IPv6 + IPv4 + UDP -pkt inline=${sut_mac1} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 1c 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 1c 34 85 00 00 20 11 00 00 ab cd 01 02 ab cd 02 02 00 00 66 66 00 08 00 00 +pkt inline=${sut_mac1} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 20 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 20 34 85 00 00 20 11 00 00 ab cd 01 02 ab cd 02 02 00 00 66 66 00 0c 00 00 82 83 84 85 ; src_ipv6: fe80::200:ff:0:[0000..ffff] random=XXXXXXXXXXXXXXXX rand_offset=36 ; src_ipv4: 171.205.[0..3].[0..255] random=000000XXXXXXXXXX rand_offset=68 -; src_port: 64*[0..63] +; src_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=74 +lat pos=82 [core 3] name=inet_0a @@ -96,13 +98,14 @@ mode=gen tx port=inet_0 bps=1250000000 ; Ethernet + IPv4 + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 0c 55 7b 42 43 44 45 ; dst_ipv4: 171.205.[0..3].[0..255] random=000000XXXXXXXXXX rand_offset=32 ; dst_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=36 +lat pos=42 [core 4] name=inet_0b @@ -111,13 +114,14 @@ mode=gen tx port=inet_0 bps=1250000000 ; Ethernet + IPv4 + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 08 55 7b +pkt inline=${sut_mac0} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 0c 55 7b 42 43 44 45 ; dst_ipv4: 171.205.[0..3].[0..255] random=000000XXXXXXXXXX rand_offset=32 ; dst_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=36 +lat pos=42 [core 5] name=tun_1a @@ -125,7 +129,8 @@ task=0 mode=gen tx port=lwB4_1 bps=1250000000 -pkt inline=${sut_mac3} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 1c 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 1c 34 85 00 00 20 11 00 00 ab cd 00 00 ab cd 03 02 00 00 66 66 00 08 00 00 +; Ethernet + IPv6 + IPv4 + UDP +pkt inline=${sut_mac3} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 20 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 20 34 85 00 00 20 11 00 00 ab cd 00 00 ab cd 03 02 00 00 66 66 00 0c 00 00 82 83 84 85 ; src_ipv6: fe80::200:ff:0:[0000..ffff] random=XXXXXXXXXXXXXXXX rand_offset=36 @@ -135,6 +140,7 @@ rand_offset=68 ; src_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=74 +lat pos=82 [core 10] name=tun_1b @@ -142,7 +148,8 @@ task=0 mode=gen tx port=lwB4_1 bps=1250000000 -pkt inline=${sut_mac3} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 1c 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 1c 34 85 00 00 20 11 00 00 ab cd 00 00 ab cd 03 01 00 00 66 66 00 08 00 00 +; Ethernet + IPv6 + IPv4 + UDP +pkt inline=${sut_mac3} 90 e2 ba c6 84 d1 86 dd 60 00 00 00 00 20 04 04 fe 80 00 00 00 00 00 00 02 00 00 ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 45 00 00 20 34 85 00 00 20 11 00 00 ab cd 00 00 ab cd 03 01 00 00 66 66 00 0c 00 00 82 83 84 85 ; src_ipv6: fe80::200:ff:0:[0000..ffff] random=XXXXXXXXXXXXXXXX rand_offset=36 @@ -152,6 +159,7 @@ rand_offset=68 ; src_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=74 +lat pos=82 [core 11] name=inet_2a @@ -159,13 +167,15 @@ task=0 mode=gen tx port=inet_1 bps=1250000000 -pkt inline=${sut_mac2} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 08 55 7b +; Ethernet + IPv4 + UDP +pkt inline=${sut_mac2} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 0c 55 7b 42 43 44 45 ; dst_ipv4: 171.205.[0..3].[0..255] random=000000XXXXXXXXXX rand_offset=32 ; dst_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=36 +lat pos=42 [core 16] name=inet_2b @@ -173,34 +183,40 @@ task=0 mode=gen tx port=inet_1 bps=1250000000 -pkt inline=${sut_mac2} 70 00 00 00 00 01 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 08 55 7b +; Ethernet + IPv4 + UDP +pkt inline=${sut_mac2} 70 00 00 00 00 01 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d ab cd 02 01 ab cd 01 03 13 88 13 88 00 0c 55 7b 42 43 44 45 ; dst_ipv4: 171.205.[0..3].[0..255] random=000000XXXXXXXXXX rand_offset=32 ; dst_port: 64*[0..63] random=0000XXXXXX000000 rand_offset=36 +lat pos=42 [core 17] name=lat_in0 task=0 mode=lat rx port=inet_0 +lat pos=42 [core 18] name=lat_tun0 task=0 mode=lat rx port=lwB4_0 +lat pos=82 [core 19] name=lat_in1 task=0 mode=lat rx port=inet_1 +lat pos=42 [core 20] name=lat_tun1 task=0 mode=lat rx port=lwB4_1 +lat pos=82 diff --git a/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-2.cfg b/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-2.cfg index d9c742983..9fcbbacc9 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-2.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-2.cfg @@ -21,6 +21,7 @@ no-output=no ; disable DPDK debug output [port 0] name=taggd1 mac=hardware + [port 1] name=plain1 mac=hardware @@ -47,7 +48,8 @@ mode=gen tx port=taggd1 bps=1250000000 ; Ethernet + MPLS + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 88 47 00 00 31 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 08 7c 21 FFFFFFFF +pkt inline=${sut_mac0} 70 00 00 00 00 01 88 47 00 00 31 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 0c 7c 21 46 47 48 49 +lat pos=46 [core 2] name=udp1 @@ -56,7 +58,8 @@ mode=gen tx port=plain1 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 08 7c 21 FFFFFFFF +pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 0c 7c 21 42 43 44 45 +lat pos=42 [core 3] task=0 diff --git a/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-4.cfg b/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-4.cfg index 20b373882..1e89d9dd7 100644 --- a/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-4.cfg +++ b/samples/vnf_samples/nsut/prox/configs/gen_mpls_tag_untag-4.cfg @@ -21,12 +21,15 @@ no-output=no ; disable DPDK debug output [port 0] name=taggd1 mac=hardware + [port 1] name=plain1 mac=hardware + [port 2] name=plain2 mac=hardware + [port 3] name=taggd2 mac=hardware @@ -55,7 +58,8 @@ mode=gen tx port=taggd1 bps=1250000000 ; Ethernet + MPLS + IP + UDP -pkt inline=${sut_mac0} 70 00 00 00 00 01 88 47 00 00 31 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 08 7c 21 FFFFFFFF +pkt inline=${sut_mac0} 70 00 00 00 00 01 88 47 00 00 31 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 0c 7c 21 46 47 48 49 +lat pos=46 [core 2] name=udp1 @@ -64,7 +68,8 @@ mode=gen tx port=plain1 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 08 7c 21 FFFFFFFF +pkt inline=${sut_mac1} 70 00 00 00 00 02 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 0c 7c 21 42 43 44 45 +lat pos=42 [core 3] name=udp2 @@ -73,7 +78,8 @@ mode=gen tx port=plain2 bps=1250000000 ; Ethernet + IP + UDP -pkt inline=${sut_mac2} 70 00 00 00 00 03 08 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 08 7c 21 FFFFFFFF +pkt inline=${sut_mac2} 70 00 00 00 00 03 08 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 0c 7c 21 42 43 44 45 +lat pos=42 [core 4] name=tag2 @@ -82,7 +88,8 @@ mode=gen tx port=taggd2 bps=1250000000 ; Ethernet + MPLS + IP + UDP -pkt inline=${sut_mac3} 70 00 00 00 00 04 88 47 00 00 31 00 45 00 00 1c 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 08 7c 21 FFFFFFFF +pkt inline=${sut_mac3} 70 00 00 00 00 04 88 47 00 00 31 00 45 00 00 20 00 01 00 00 40 11 f7 7d c0 a8 01 01 c0 a8 01 01 00 35 00 35 00 0c 7c 21 46 47 48 49 +lat pos=46 [core 5] task=0 diff --git a/samples/vnf_samples/nsut/prox/configs/irq.cfg b/samples/vnf_samples/nsut/prox/configs/irq.cfg new file mode 100644 index 000000000..303744371 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/configs/irq.cfg @@ -0,0 +1,46 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +#; + +[eal options] +-n=4 ; force number of memory channels +no-output=no ; disable DPDK debug output + +[global] +start time=5 +name=IRQ Query + +[core 0] +mode=master + +[core 1] +name=irq +task=0 +mode=irq + +[core 2] +name=irq +task=0 +mode=irq + +[core 3] +name=irq +task=0 +mode=irq + +[core 4] +name=irq +task=0 +mode=irq diff --git a/samples/vnf_samples/nsut/prox/configs/irq2.cfg b/samples/vnf_samples/nsut/prox/configs/irq2.cfg new file mode 100644 index 000000000..9eda96f58 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/configs/irq2.cfg @@ -0,0 +1,66 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +#; + +[eal options] +-n=4 ; force number of memory channels +no-output=no ; disable DPDK debug output + +[global] +start time=5 +name=IRQ Query + +[core 0] +mode=master + +[core 1] +name=irq +task=0 +mode=irq + +[core 2] +name=irq +task=0 +mode=irq + +[core 3] +name=irq +task=0 +mode=irq + +[core 4] +name=irq +task=0 +mode=irq + +[core 5] +name=irq +task=0 +mode=irq + +[core 6] +name=irq +task=0 +mode=irq + +[core 7] +name=irq +task=0 +mode=irq + +[core 8] +name=irq +task=0 +mode=irq diff --git a/samples/vnf_samples/nsut/prox/prox-irq-baremetal.yaml b/samples/vnf_samples/nsut/prox/prox-irq-baremetal.yaml new file mode 100644 index 000000000..45faa57b0 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/prox-irq-baremetal.yaml @@ -0,0 +1,47 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +#; + +nodes: +- + name: "tg_0" + role: ProxIrqGen + ip: 1.1.1.1 + user: "root" + ssh_port: "22" + password: "r00t" + interfaces: + xe0: + vpci: "0000:05:00.0" + local_mac: "00:00:00:00:00:01" + driver: "i40e" + local_ip: "152.16.100.19" + netmask: "255.255.255.0" + dpdk_port_num: 0 +- + name: "vnf_0" + role: ProxIrqGen + ip: 1.1.1.2 + user: "root" + ssh_port: "22" + password: "r00t" + interfaces: + xe0: + vpci: "0000:05:00.0" + local_mac: "00:00:00:00:00:02" + driver: "i40e" + local_ip: "152.16.100.21" + netmask: "255.255.255.0" + dpdk_port_num: 0 diff --git a/samples/vnf_samples/nsut/firewall/firewall_vnf_topology_ixia.yaml b/samples/vnf_samples/nsut/prox/prox-tg-topology-0.yaml index 9913a0588..cbd7b57a0 100644 --- a/samples/vnf_samples/nsut/firewall/firewall_vnf_topology_ixia.yaml +++ b/samples/vnf_samples/nsut/prox/prox-tg-topology-0.yaml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017 Intel Corporation +# Copyright (c) 2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -14,18 +14,17 @@ nsd:nsd-catalog: nsd: - - id: vFW - name: vFW - short-name: vFW - description: scenario with vFW VNF + - id: prox-tg-topology + name: prox-tg-topology + short-name: prox-tg-topology + description: prox-tg-topology constituent-vnfd: - member-vnf-index: '1' vnfd-id-ref: tg__0 - VNF model: ../../vnf_descriptors/ixia_rfc2544_tpl.yaml + VNF model: ../../vnf_descriptors/tg_prox_irq.yaml - member-vnf-index: '2' vnfd-id-ref: vnf__0 - VNF model: ../../vnf_descriptors/firewall_vnf.yaml - + VNF model: ../../vnf_descriptors/prox_irq_vnf.yaml vld: - id: uplink_0 name: tg__0 to vnf__0 link 1 @@ -42,9 +41,9 @@ nsd:nsd-catalog: name: vnf__0 to tg__0 link 2 type: ELAN vnfd-connection-point-ref: - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe1 - vnfd-id-ref: vnf__0 - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe1 + vnfd-connection-point-ref: xe0 + vnfd-id-ref: vnf__0 + - member-vnf-index-ref: '2' + vnfd-connection-point-ref: xe0 vnfd-id-ref: tg__0 diff --git a/samples/vnf_samples/nsut/prox/prox-tg-topology-scale-up.yaml b/samples/vnf_samples/nsut/prox/prox-tg-topology-scale-up.yaml index 74c48bac2..87db3702f 100644 --- a/samples/vnf_samples/nsut/prox/prox-tg-topology-scale-up.yaml +++ b/samples/vnf_samples/nsut/prox/prox-tg-topology-scale-up.yaml @@ -11,8 +11,9 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - +--- {% set vports = get(extra_args, 'vports', 2) %} + nsd:nsd-catalog: nsd: - id: prox-tg-topology @@ -27,36 +28,25 @@ nsd:nsd-catalog: vnfd-id-ref: vnf__0 VNF model: ../../vnf_descriptors/prox_vnf.yaml vld: - - id: uplink_0 - name: tg__0 to vnf__0 link 1 +{% for vport in range(0,vports,2|int) %} + - id: uplink_{{loop.index0}} + name: tg__0 to vnf__0 link {{ vport + 1 }} type: ELAN vnfd-connection-point-ref: - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe0 + vnfd-connection-point-ref: xe{{ vport }} vnfd-id-ref: tg__0 - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe0 + vnfd-connection-point-ref: xe{{ vport }} vnfd-id-ref: vnf__0 -{% for vport in range(vports-1|int) %} - - id: downlink_{{ vport }} - name: vnf__0 to tg__0 link {{ vport+2 }} + - id: downlink_{{loop.index0}} + name: vnf__0 to tg__0 link {{ vport + 2 }} type: ELAN vnfd-connection-point-ref: - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe{{ vport+1 }} - vnfd-id-ref: vnf__0 - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe{{ vport+1 }} - vnfd-id-ref: tg__0 -{% else %} - - id: downlink_0 - name: vnf__0 to tg__0 link 1 - type: ELAN - vnfd-connection-point-ref: - - member-vnf-index-ref: '1' - vnfd-connection-point-ref: xe0 + vnfd-connection-point-ref: xe{{ vport + 1 }} vnfd-id-ref: vnf__0 - - member-vnf-index-ref: '2' - vnfd-connection-point-ref: xe0 + - member-vnf-index-ref: '1' + vnfd-connection-point-ref: xe{{ vport + 1 }} vnfd-id-ref: tg__0 -{% endfor %}
\ No newline at end of file +{% endfor %} diff --git a/samples/vnf_samples/nsut/prox/standalone-args.yaml b/samples/vnf_samples/nsut/prox/standalone-args.yaml new file mode 100644 index 000000000..7f45112e3 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/standalone-args.yaml @@ -0,0 +1,46 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- + +networks: + uplink: + - + port_num: 0 + phy_port: "0000:05:00.0" + vpci: "0000:00:0a.0" + cidr: '152.16.100.10/24' + gateway_ip: '152.16.100.20' + - + port_num: 2 + phy_port: "0000:05:00.2" + vpci: "0000:00:0c.0" + cidr: '152.16.50.10/24' + gateway_ip: '152.16.100.20' + + downlink: + - + port_num: 1 + phy_port: "0000:05:00.1" + vpci: "0000:00:0b.0" + cidr: '152.16.40.10/24' + gateway_ip: '152.16.100.20' + + - + port_num: 3 + phy_port: "0000:05:00.3" + vpci: "0000:00:0d.0" + cidr: '152.16.30.10/24' + gateway_ip: '152.16.100.20' + diff --git a/samples/vnf_samples/nsut/prox/tc_prox_baremetal_irq.yaml b/samples/vnf_samples/nsut/prox/tc_prox_baremetal_irq.yaml new file mode 100644 index 000000000..30e703f51 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/tc_prox_baremetal_irq.yaml @@ -0,0 +1,62 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +schema: "yardstick:task:0.1" +description: > + This test queries the PROX IRQ Statistics on the GEN and VNF. The KPIs + returned are the Maximium IRQ per core and the IRQs per second per + core. + +scenarios: +- + type: NSPerf + traffic_profile: ../../traffic_profiles/prox_irq.yaml + topology: prox-tg-topology-0.yaml + + nodes: + tg__0: tg_0.yardstick + vnf__0: vnf_0.yardstick + + options: + + vnf__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/irq2.cfg" + prox_args: + "-t": "" + + tg__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/irq2.cfg" + prox_args: + "-t": "" + + + runner: + type: ProxDuration + # sampling interval + interval: 1 + # sampled : yes OR sampled: no (DEFAULT yes) + sampled: yes + # we kill after duration, independent of test duration, so set this high + duration: 3100 + # Confirmation attempts + confirmation: 1 + +context: + type: Node + name: yardstick + nfvi_type: baremetal + file: prox-irq-baremetal.yaml diff --git a/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l2fwd-scale-up.yaml b/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l2fwd-scale-up.yaml new file mode 100644 index 000000000..49ab05a51 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l2fwd-scale-up.yaml @@ -0,0 +1,103 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +{% set vports = vports or 2 %} +--- +schema: "yardstick:task:0.1" + +scenarios: +- + type: NSPerf + traffic_profile: ../../traffic_profiles/prox_binsearch.yaml + extra_args: + vports: {{ vports }} + topology: prox-tg-topology-scale-up.yaml + + nodes: + tg__0: tg__0.yardstick + vnf__0: vnf__0.yardstick + + options: + interface_speed_gbps: 10 + + vnf__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/handle_l2fwd-{{ vports }}.cfg" + prox_args: + "-t": "" + + tg__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/gen_l2fwd-{{ vports }}.cfg" + prox_args: + "-e": "" + "-t": "" + + runner: + type: Duration + # we kill after duration, independent of test duration, so set this high + duration: 600 + +contexts: + - name: yardstick + type: Node + file: prox_tg_bm.yaml + servers: + - name: yardstick + type: StandaloneOvsDpdk + file: /etc/yardstick/nodes/standalone/host_ovs.yaml + vm_deploy: True + ovs_properties: + version: + ovs: 2.8.0 + dpdk: 17.05.2 + pmd_threads: 2 + ram: + socket_0: 2048 + socket_1: 2048 + queues: 4 + vpath: "/usr/local" + flavor: + images: "/var/lib/libvirt/images/yardstick-nsb-image.img" + ram: 16384 + extra_specs: + hw:cpu_sockets: 1 + hw:cpu_cores: 10 + hw:cpu_threads: 2 + servers: + vnf__0: + network_ports: + mgmt: + cidr: '1.1.1.62/24' +{% for port_num in range((vports/2)|int) %} + xe{{ port_num * 2 }}: + - uplink_{{ port_num }} + xe{{ (port_num * 2) + 1 }}: + - downlink_{{ port_num }} +{% endfor %} + networks: +{% for port_num in range((vports/2)|int) %} + uplink_{{ port_num }}: + port_num: {{networks.uplink[port_num].port_num}} + phy_port: "{{networks.uplink[port_num].phy_port}}" + vpci: "{{networks.uplink[port_num].vpci}}" + cidr: "{{networks.uplink[port_num].cidr}}" + gateway_ip: "{{ networks.uplink[port_num].gateway_ip }}" + downlink_{{ port_num }}: + port_num: {{networks.downlink[port_num].port_num}} + phy_port: "{{networks.downlink[port_num].phy_port}}" + vpci: "{{networks.downlink[port_num].vpci}}" + cidr: "{{networks.downlink[port_num].cidr}}" + gateway_ip: "{{networks.downlink[port_num].gateway_ip}}" +{% endfor %} diff --git a/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l2fwd_multiflow-scale-up.yaml b/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l2fwd_multiflow-scale-up.yaml new file mode 100644 index 000000000..31a76332c --- /dev/null +++ b/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l2fwd_multiflow-scale-up.yaml @@ -0,0 +1,102 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +{% set vports = vports or 2 %} +--- +schema: "yardstick:task:0.1" + +scenarios: +- + type: NSPerf + traffic_profile: ../../traffic_profiles/prox_binsearch.yaml + extra_args: + vports: {{ vports }} + topology: prox-tg-topology-scale-up.yaml + + nodes: + tg__0: tg__0.yardstick + vnf__0: vnf__0.yardstick + + options: + interface_speed_gbps: 10 + + vnf__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/handle_l2fwd_multiflow-{{ vports }}.cfg" + prox_args: + "-t": "" + + tg__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/gen_l2fwd_multiflow-{{ vports }}.cfg" + prox_args: + "-e": "" + "-t": "" + + runner: + type: Duration + # we kill after duration, independent of test duration, so set this high + duration: 600 + +contexts: + - name: yardstick + type: Node + file: prox_tg_bm.yaml + - name: yardstick + type: StandaloneOvsDpdk + file: /etc/yardstick/nodes/standalone/host_ovs.yaml + vm_deploy: True + ovs_properties: + version: + ovs: 2.8.0 + dpdk: 17.05.2 + pmd_threads: 2 + ram: + socket_0: 2048 + socket_1: 2048 + queues: 4 + vpath: "/usr/local" + flavor: + images: "/var/lib/libvirt/images/yardstick-nsb-image.img" + ram: 16384 + extra_specs: + hw:cpu_sockets: 1 + hw:cpu_cores: 10 + hw:cpu_threads: 2 + servers: + vnf__0: + network_ports: + mgmt: + cidr: '1.1.1.62/24' +{% for port_num in range((vports/2)|int) %} + xe{{ port_num * 2 }}: + - uplink_{{ port_num }} + xe{{ (port_num * 2) + 1 }}: + - downlink_{{ port_num }} +{% endfor %} + networks: +{% for port_num in range((vports/2)|int) %} + uplink_{{ port_num }}: + port_num: {{ networks.uplink[port_num].port_num }} + phy_port: "{{ networks.uplink[port_num].phy_port }}" + vpci: "{{ networks.uplink[port_num].vpci }}" + cidr: "{{ networks.uplink[port_num].cidr }}" + gateway_ip: "{{ networks.uplink[port_num].gateway_ip }}" + downlink_{{ port_num }}: + port_num: {{ networks.downlink[port_num].port_num }} + phy_port: "{{ networks.downlink[port_num].phy_port }}" + vpci: "{{ networks.downlink[port_num].vpci }}" + cidr: "{{ networks.downlink[port_num].cidr }}" + gateway_ip: "{{ networks.downlink[port_num].gateway_ip }}" +{% endfor %} diff --git a/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l3fwd-scale-up.yaml b/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l3fwd-scale-up.yaml new file mode 100644 index 000000000..450775805 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/tc_prox_ovs-dpdk_l3fwd-scale-up.yaml @@ -0,0 +1,107 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +{% set vports = vports or 2 %} +--- +schema: "yardstick:task:0.1" + +scenarios: +- + type: NSPerf + traffic_profile: ../../traffic_profiles/prox_binsearch.yaml + extra_args: + vports: {{ vports }} + topology: prox-tg-topology-scale-up.yaml + + nodes: + tg__0: tg__0.yardstick + vnf__0: vnf__0.yardstick + + options: + vnf__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/handle_l3fwd-{{ vports }}.cfg" + prox_args: + "-t": "" + prox_files: +{% if vports == 2 %} + "configs/ipv4-2port.lua" : "" +{% else %} + "configs/ipv4.lua" : "" +{% endif %} + prox_generate_parameter: True + + tg__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/gen_l3fwd-{{ vports }}.cfg" + prox_args: + "-e": "" + "-t": "" + + runner: + type: Duration + # we kill after duration, independent of test duration, so set this high + duration: 600 + +contexts: + - name: yardstick + type: Node + file: prox_tg_bm.yaml + - name: yardstick + type: StandaloneOvsDpdk + file: /etc/yardstick/nodes/standalone/host_ovs.yaml + vm_deploy: True + ovs_properties: + version: + ovs: 2.8.0 + dpdk: 17.05.2 + pmd_threads: 2 + ram: + socket_0: 2048 + socket_1: 2048 + queues: 4 + vpath: "/usr/local" + flavor: + images: "/var/lib/libvirt/images/yardstick-nsb-image.img" + ram: 16384 + extra_specs: + hw:cpu_sockets: 1 + hw:cpu_cores: 10 + hw:cpu_threads: 2 + servers: + vnf__0: + network_ports: + mgmt: + cidr: '1.1.1.62/24' +{% for port_num in range(1,vports,2|int) %} + xe{{ loop.index0 * 2 }}: + - uplink_{{ loop.index0 }} + xe{{ (loop.index0 * 2) + 1 }}: + - downlink_{{ loop.index0 }} +{% endfor %} + networks: +{% for port_num in range(1,vports,2|int) %} + uplink_{{ loop.index0 }}: + port_num: {{ networks.uplink[loop.index0].port_num }} + phy_port: "{{ networks.uplink[loop.index0].phy_port }}" + vpci: "{{ networks.uplink[loop.index0].vpci }}" + cidr: "{{ networks.uplink[loop.index0].cidr }}" + gateway_ip: "{{ networks.uplink[loop.index0].gateway_ip }}" + downlink_{{ loop.index0 }}: + port_num: {{ networks.downlink[loop.index0].port_num }} + phy_port: "{{ networks.downlink[loop.index0].phy_port }}" + vpci: "{{ networks.downlink[loop.index0].vpci }}" + cidr: "{{ networks.downlink[loop.index0].cidr }}" + gateway_ip: "{{ networks.downlink[loop.index0].gateway_ip }}" +{% endfor %} diff --git a/samples/vnf_samples/nsut/prox/tc_prox_sriov_l2fwd-scale-up.yaml b/samples/vnf_samples/nsut/prox/tc_prox_sriov_l2fwd-scale-up.yaml new file mode 100644 index 000000000..045ee77ae --- /dev/null +++ b/samples/vnf_samples/nsut/prox/tc_prox_sriov_l2fwd-scale-up.yaml @@ -0,0 +1,92 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +{% set vports = vports or 2 %} +--- +schema: "yardstick:task:0.1" + +scenarios: +- + type: NSPerf + traffic_profile: ../../traffic_profiles/prox_binsearch.yaml + extra_args: + vports: {{ vports }} + topology: prox-tg-topology-scale-up.yaml + + nodes: + tg__0: tg__0.yardstick + vnf__0: vnf__0.yardstick + + options: + interface_speed_gbps: 10 + + vnf__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/handle_l2fwd-{{ vports }}.cfg" + prox_args: + "-t": "" + + tg__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/gen_l2fwd-{{ vports }}.cfg" + prox_args: + "-e": "" + "-t": "" + + runner: + type: Duration + # we kill after duration, independent of test duration, so set this high + duration: 600 + +contexts: + - name: yardstick + type: Node + file: prox_tg_bm.yaml + - name: yardstick + type: StandaloneSriov + file: /etc/yardstick/nodes/standalone/host_sriov.yaml + vm_deploy: True + flavor: + images: "/var/lib/libvirt/images/yardstick-nsb-image.img" + ram: 16384 + extra_specs: + hw:cpu_sockets: 1 + hw:cpu_cores: 10 + hw:cpu_threads: 2 + user: "root" + password: "" + servers: + vnf__0: + network_ports: + mgmt: + cidr: '1.1.1.62/24' +{% for port_num in range((vports/2)|int) %} + xe{{ port_num * 2 }}: + - uplink_{{ port_num }} + xe{{ (port_num * 2) + 1 }}: + - downlink_{{ port_num }} +{% endfor %} + networks: +{% for port_num in range((vports/2)|int) %} + uplink_{{ port_num }}: + phy_port: "{{networks.uplink[port_num].phy_port}}" + vpci: "{{networks.uplink[port_num].vpci}}" + cidr: "{{networks.uplink[port_num].cidr}}" + gateway_ip: "{{ networks.uplink[port_num].gateway_ip }}" + downlink_{{ port_num }}: + phy_port: "{{networks.downlink[port_num].phy_port}}" + vpci: "{{networks.downlink[port_num].vpci}}" + cidr: "{{networks.downlink[port_num].cidr}}" + gateway_ip: "{{networks.downlink[port_num].gateway_ip}}" +{% endfor %} diff --git a/samples/vnf_samples/nsut/prox/tc_prox_sriov_l2fwd_multiflow-scale-up.yaml b/samples/vnf_samples/nsut/prox/tc_prox_sriov_l2fwd_multiflow-scale-up.yaml new file mode 100644 index 000000000..3fefc48d0 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/tc_prox_sriov_l2fwd_multiflow-scale-up.yaml @@ -0,0 +1,92 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +{% set vports = vports or 2 %} +--- +schema: "yardstick:task:0.1" + +scenarios: +- + type: NSPerf + traffic_profile: ../../traffic_profiles/prox_binsearch.yaml + extra_args: + vports: {{ vports }} + topology: prox-tg-topology-scale-up.yaml + + nodes: + tg__0: tg__0.yardstick + vnf__0: vnf__0.yardstick + + options: + interface_speed_gbps: 10 + + vnf__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/handle_l2fwd_multiflow-{{ vports }}.cfg" + prox_args: + "-t": "" + + tg__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/gen_l2fwd_multiflow-{{ vports }}.cfg" + prox_args: + "-e": "" + "-t": "" + + runner: + type: Duration + # we kill after duration, independent of test duration, so set this high + duration: 600 + +contexts: + - name: yardstick + type: Node + file: prox_tg_bm.yaml + - name: yardstick + type: StandaloneSriov + file: /etc/yardstick/nodes/standalone/host_sriov.yaml + vm_deploy: True + flavor: + images: "/var/lib/libvirt/images/yardstick-nsb-image.img" + ram: 16384 + extra_specs: + hw:cpu_sockets: 1 + hw:cpu_cores: 10 + hw:cpu_threads: 2 + user: "" + password: "" + servers: + vnf__0: + network_ports: + mgmt: + cidr: '1.1.1.62/24' +{% for port_num in range((vports/2)|int) %} + xe{{ port_num * 2 }}: + - uplink_{{ port_num }} + xe{{ (port_num * 2) + 1 }}: + - downlink_{{ port_num }} +{% endfor %} + networks: +{% for port_num in range((vports/2)|int) %} + uplink_{{ port_num }}: + phy_port: "{{ networks.uplink[port_num].phy_port }}" + vpci: "{{ networks.uplink[port_num].vpci }}" + cidr: "{{ networks.uplink[port_num].cidr }}" + gateway_ip: "{{ networks.uplink[port_num].gateway_ip }}" + downlink_{{ port_num }}: + phy_port: "{{ networks.downlink[port_num].phy_port }}" + vpci: "{{ networks.downlink[port_num].vpci }}" + cidr: "{{ networks.downlink[port_num].cidr }}" + gateway_ip: "{{ networks.downlink[port_num].gateway_ip }}" +{% endfor %} diff --git a/samples/vnf_samples/nsut/prox/tc_prox_sriov_l3fwd-scale-up.yaml b/samples/vnf_samples/nsut/prox/tc_prox_sriov_l3fwd-scale-up.yaml new file mode 100644 index 000000000..a824ef940 --- /dev/null +++ b/samples/vnf_samples/nsut/prox/tc_prox_sriov_l3fwd-scale-up.yaml @@ -0,0 +1,95 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +{% set vports = vports or 2 %} +--- +schema: "yardstick:task:0.1" + +scenarios: +- + type: NSPerf + traffic_profile: ../../traffic_profiles/prox_binsearch.yaml + extra_args: + vports: {{ vports }} + topology: prox-tg-topology-scale-up.yaml + + nodes: + tg__0: tg__0.yardstick + vnf__0: vnf__0.yardstick + + options: + vnf__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/handle_l3fwd-{{ vports }}.cfg" + prox_args: + "-t": "" + prox_files: +{% if vports == 2 %} + "configs/ipv4-2port.lua" : "" +{% else %} + "configs/ipv4.lua" : "" +{% endif %} + prox_generate_parameter: True + + tg__0: + prox_path: /opt/nsb_bin/prox + prox_config: "configs/gen_l3fwd-{{ vports }}.cfg" + prox_args: + "-e": "" + "-t": "" + + runner: + type: Duration + # we kill after duration, independent of test duration, so set this high + duration: 1800 + +contexts: + - name: yardstick + type: Node + file: prox_tg_bm.yaml + - name: yardstick + type: StandaloneSriov + file: /etc/yardstick/nodes/standalone/host_sriov.yaml + vm_deploy: True + flavor: + images: "/var/lib/libvirt/images/yardstick-nsb-image.img" + ram: 16384 + extra_specs: + hw:cpu_sockets: 1 + hw:cpu_cores: 10 + hw:cpu_threads: 2 + servers: + vnf__0: + network_ports: + mgmt: + cidr: '1.1.1.62/24' +{% for port_num in range((vports/2)|int) %} + xe{{ port_num * 2 }}: + - uplink_{{ port_num }} + xe{{ (port_num * 2) + 1 }}: + - downlink_{{ port_num }} +{% endfor %} + networks: +{% for port_num in range((vports/2)|int) %} + uplink_{{ port_num }}: + phy_port: "{{ networks.uplink[port_num].phy_port }}" + vpci: "{{ networks.uplink[port_num].vpci }}" + cidr: "{{ networks.uplink[port_num].cidr }}" + gateway_ip: "{{ networks.uplink[port_num].gateway_ip }}" + downlink_{{ port_num }}: + phy_port: "{{ networks.downlink[port_num].phy_port }}" + vpci: "{{ networks.downlink[port_num].vpci }}" + cidr: "{{ networks.downlink[port_num].cidr }}" + gateway_ip: "{{ networks.downlink[port_num].gateway_ip }}" +{% endfor %} diff --git a/samples/vnf_samples/nsut/vpe/tc_baremetal_rfc2544_ipv4_1flow_64B_ixia.yaml b/samples/vnf_samples/nsut/vpe/tc_baremetal_rfc2544_ipv4_1flow_64B_ixia.yaml index 330d8e85e..399de9cc3 100644 --- a/samples/vnf_samples/nsut/vpe/tc_baremetal_rfc2544_ipv4_1flow_64B_ixia.yaml +++ b/samples/vnf_samples/nsut/vpe/tc_baremetal_rfc2544_ipv4_1flow_64B_ixia.yaml @@ -36,7 +36,8 @@ scenarios: nfvi_enable: True vnf_config: {file: './vpe_config/vpe_config_2_ports', action_bulk_file: './vpe_config/action_bulk_512.txt', - full_tm_profile_file: './vpe_config/full_tm_profile_10G.cfg'} + full_tm_profile_file: './vpe_config/full_tm_profile_10G.cfg', + script_file: './vpe_config/vpe_script_sample'} runner: type: Iteration iterations: 10 diff --git a/samples/vnf_samples/nsut/vpe/vpe_config/action_bulk_512.txt b/samples/vnf_samples/nsut/vpe/vpe_config/action_bulk_512.txt index 21731cd45..6fb3bdd7d 100644 --- a/samples/vnf_samples/nsut/vpe/vpe_config/action_bulk_512.txt +++ b/samples/vnf_samples/nsut/vpe/vpe_config/action_bulk_512.txt @@ -1,3 +1,17 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + flow 0 meter 0 trtcm 1250000000 1250000000 1000000 1000000 policer 0 g G y Y r R meter 1 trtcm 1250000000 1250000000 1000000 1000000 policer 1 g G y Y r R meter 2 trtcm 1250000000 1250000000 1000000 1000000 policer 2 g G y Y r R meter 3 trtcm 1250000000 1250000000 1000000 1000000 policer 3 g G y Y r R port 0 flow 1 meter 0 trtcm 1250000000 1250000000 1000000 1000000 policer 0 g G y Y r R meter 1 trtcm 1250000000 1250000000 1000000 1000000 policer 1 g G y Y r R meter 2 trtcm 1250000000 1250000000 1000000 1000000 policer 2 g G y Y r R meter 3 trtcm 1250000000 1250000000 1000000 1000000 policer 3 g G y Y r R port 0 flow 2 meter 0 trtcm 1250000000 1250000000 1000000 1000000 policer 0 g G y Y r R meter 1 trtcm 1250000000 1250000000 1000000 1000000 policer 1 g G y Y r R meter 2 trtcm 1250000000 1250000000 1000000 1000000 policer 2 g G y Y r R meter 3 trtcm 1250000000 1250000000 1000000 1000000 policer 3 g G y Y r R port 0 diff --git a/samples/vnf_samples/nsut/vpe/vpe_config/vpe_config_2_ports b/samples/vnf_samples/nsut/vpe/vpe_config/vpe_config_2_ports index 35443c877..44aa9854e 100644 --- a/samples/vnf_samples/nsut/vpe/vpe_config/vpe_config_2_ports +++ b/samples/vnf_samples/nsut/vpe/vpe_config/vpe_config_2_ports @@ -1,3 +1,17 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + [PIPELINE0] type = MASTER core = 0 diff --git a/samples/vnf_samples/nsut/vpe/vpe_config/vpe_script_sample b/samples/vnf_samples/nsut/vpe/vpe_config/vpe_script_sample new file mode 100644 index 000000000..ebf59ccfb --- /dev/null +++ b/samples/vnf_samples/nsut/vpe/vpe_config/vpe_script_sample @@ -0,0 +1,631 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +p 1 firewall add priority 1 ipv4 152.16.0.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.1.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.2.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.3.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.4.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.5.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.6.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.7.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.8.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.9.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.10.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.11.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.12.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.13.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.14.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.15.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.16.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.17.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.18.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.19.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.20.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.21.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.22.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.23.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.24.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.25.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.26.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.27.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.28.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.29.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.30.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.31.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.32.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.33.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.34.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.35.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.36.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.37.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.38.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.39.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.40.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.41.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.42.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.43.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.44.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.45.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.46.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.47.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.48.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.49.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.50.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.51.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.52.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.53.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.54.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.55.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.56.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.57.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.58.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.59.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.60.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.61.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.62.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.63.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.64.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.65.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.66.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.67.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.68.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.69.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.70.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.71.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.72.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.73.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.74.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.75.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.76.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.77.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.78.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.79.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.80.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.81.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.82.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.83.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.84.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.85.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.86.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.87.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.88.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.89.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.90.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.91.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.92.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.93.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.94.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.95.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.96.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.97.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.98.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.99.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.100.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.101.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.102.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.103.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.104.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.105.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.106.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.107.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.108.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.109.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.110.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.111.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.112.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.113.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.114.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.115.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.116.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.117.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.118.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.119.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.120.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.121.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.122.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.123.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.124.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.125.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.126.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.127.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.128.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.129.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.130.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.131.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.132.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.133.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.134.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.135.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.136.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.137.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.138.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.139.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.140.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.141.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.142.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.143.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.144.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.145.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.146.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.147.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.148.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.149.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.150.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.151.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.152.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.153.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.154.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.155.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.156.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.157.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.158.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.159.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.160.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.161.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.162.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.163.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.164.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.165.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.166.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.167.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.168.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.169.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.170.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.171.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.172.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.173.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.174.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.175.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.176.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.177.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.178.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.179.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.180.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.181.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.182.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.183.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.184.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.185.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.186.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.187.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.188.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.189.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.190.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.191.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.192.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.193.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.194.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.195.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.196.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.197.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.198.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.199.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.200.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.201.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.202.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.203.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.204.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.205.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.206.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.207.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.208.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.209.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.210.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.211.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.212.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.213.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.214.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.215.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.216.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.217.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.218.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.219.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.220.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.221.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.222.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.223.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.224.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.225.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.226.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.227.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.228.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.229.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.230.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.231.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.232.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.233.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.234.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.235.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.236.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.237.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.238.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.239.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.240.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.241.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.242.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.243.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.244.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.245.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.246.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.247.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.248.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.249.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.250.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.251.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.252.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.253.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.254.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add priority 1 ipv4 152.16.255.0 24 0.0.0.0 0 0 65535 0 65535 17 0xFF port 0 +p 1 firewall add default 1 + +p 2 flow add qinq 128 512 port 0 id 1 +p 2 flow add default 1 +p 3 action flow bulk /tmp/action_bulk_512.txt +p 4 action flow bulk /tmp/action_bulk_512.txt +p 4 action dscp 0 class 0 color G +p 4 action dscp 1 class 1 color Y +p 4 action dscp 2 class 2 color R +p 4 action dscp 3 class 3 color G +p 4 action dscp 4 class 0 color Y +p 4 action dscp 5 class 1 color R +p 4 action dscp 6 class 2 color G +p 4 action dscp 7 class 3 color Y +p 4 action dscp 8 class 0 color R +p 4 action dscp 9 class 1 color G +p 4 action dscp 10 class 2 color Y +p 4 action dscp 11 class 3 color R +p 4 action dscp 12 class 0 color G +p 4 action dscp 13 class 1 color Y +p 4 action dscp 14 class 2 color R +p 4 action dscp 15 class 3 color G +p 4 action dscp 16 class 0 color Y +p 4 action dscp 17 class 1 color R +p 4 action dscp 18 class 2 color G +p 4 action dscp 19 class 3 color Y +p 4 action dscp 20 class 0 color R +p 4 action dscp 21 class 1 color G +p 4 action dscp 22 class 2 color Y +p 4 action dscp 23 class 3 color R +p 4 action dscp 24 class 0 color G +p 4 action dscp 25 class 1 color Y +p 4 action dscp 26 class 2 color R +p 4 action dscp 27 class 3 color G +p 4 action dscp 28 class 0 color Y +p 4 action dscp 29 class 1 color R +p 4 action dscp 30 class 2 color G +p 4 action dscp 31 class 3 color Y +p 4 action dscp 32 class 0 color R +p 4 action dscp 33 class 1 color G +p 4 action dscp 34 class 2 color Y +p 4 action dscp 35 class 3 color R +p 4 action dscp 36 class 0 color G +p 4 action dscp 37 class 1 color Y +p 4 action dscp 38 class 2 color R +p 4 action dscp 39 class 3 color G +p 4 action dscp 40 class 0 color Y +p 4 action dscp 41 class 1 color R +p 4 action dscp 42 class 2 color G +p 4 action dscp 43 class 3 color Y +p 4 action dscp 44 class 0 color R +p 4 action dscp 45 class 1 color G +p 4 action dscp 46 class 2 color Y +p 4 action dscp 47 class 3 color R +p 4 action dscp 48 class 0 color G +p 4 action dscp 49 class 1 color Y +p 4 action dscp 50 class 2 color R +p 4 action dscp 51 class 3 color G +p 4 action dscp 52 class 0 color Y +p 4 action dscp 53 class 1 color R +p 4 action dscp 54 class 2 color G +p 4 action dscp 55 class 3 color Y +p 4 action dscp 56 class 0 color R +p 4 action dscp 57 class 1 color G +p 4 action dscp 58 class 2 color Y +p 4 action dscp 59 class 3 color R +p 4 action dscp 60 class 0 color G +p 4 action dscp 61 class 1 color Y +p 4 action dscp 62 class 2 color R +p 4 action dscp 63 class 3 color G +p 5 route add 152.40.0.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:0 +p 5 route add 152.40.8.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:8 +p 5 route add 152.40.16.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:16 +p 5 route add 152.40.24.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:24 +p 5 route add 152.40.32.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:32 +p 5 route add 152.40.40.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:40 +p 5 route add 152.40.48.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:48 +p 5 route add 152.40.56.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:56 +p 5 route add 152.40.64.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:64 +p 5 route add 152.40.72.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:72 +p 5 route add 152.40.80.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:80 +p 5 route add 152.40.88.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:88 +p 5 route add 152.40.96.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:96 +p 5 route add 152.40.104.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:104 +p 5 route add 152.40.112.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:112 +p 5 route add 152.40.120.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:120 +p 5 route add 152.40.128.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:128 +p 5 route add 152.40.136.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:136 +p 5 route add 152.40.144.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:144 +p 5 route add 152.40.152.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:152 +p 5 route add 152.40.160.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:160 +p 5 route add 152.40.168.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:168 +p 5 route add 152.40.176.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:176 +p 5 route add 152.40.184.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:184 +p 5 route add 152.40.192.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:192 +p 5 route add 152.40.200.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:200 +p 5 route add 152.40.208.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:208 +p 5 route add 152.40.216.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:216 +p 5 route add 152.40.224.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:224 +p 5 route add 152.40.232.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:232 +p 5 route add 152.40.240.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:240 +p 5 route add 152.40.248.0 21 port 0 ether 00:98:28:28:14:00 mpls 0:248 +p 5 route add default 1 + +p 6 route add 152.16.0.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 0 +p 6 route add 152.16.1.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 1 +p 6 route add 152.16.2.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 2 +p 6 route add 152.16.3.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 3 +p 6 route add 152.16.4.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 4 +p 6 route add 152.16.5.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 5 +p 6 route add 152.16.6.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 6 +p 6 route add 152.16.7.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 7 +p 6 route add 152.16.8.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 8 +p 6 route add 152.16.9.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 9 +p 6 route add 152.16.10.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 10 +p 6 route add 152.16.11.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 11 +p 6 route add 152.16.12.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 12 +p 6 route add 152.16.13.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 13 +p 6 route add 152.16.14.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 14 +p 6 route add 152.16.15.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 15 +p 6 route add 152.16.16.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 16 +p 6 route add 152.16.17.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 17 +p 6 route add 152.16.18.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 18 +p 6 route add 152.16.19.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 19 +p 6 route add 152.16.20.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 20 +p 6 route add 152.16.21.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 21 +p 6 route add 152.16.22.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 22 +p 6 route add 152.16.23.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 23 +p 6 route add 152.16.24.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 24 +p 6 route add 152.16.25.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 25 +p 6 route add 152.16.26.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 26 +p 6 route add 152.16.27.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 27 +p 6 route add 152.16.28.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 28 +p 6 route add 152.16.29.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 29 +p 6 route add 152.16.30.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 30 +p 6 route add 152.16.31.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 31 +p 6 route add 152.16.32.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 32 +p 6 route add 152.16.33.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 33 +p 6 route add 152.16.34.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 34 +p 6 route add 152.16.35.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 35 +p 6 route add 152.16.36.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 36 +p 6 route add 152.16.37.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 37 +p 6 route add 152.16.38.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 38 +p 6 route add 152.16.39.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 39 +p 6 route add 152.16.40.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 40 +p 6 route add 152.16.41.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 41 +p 6 route add 152.16.42.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 42 +p 6 route add 152.16.43.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 43 +p 6 route add 152.16.44.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 44 +p 6 route add 152.16.45.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 45 +p 6 route add 152.16.46.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 46 +p 6 route add 152.16.47.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 47 +p 6 route add 152.16.48.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 48 +p 6 route add 152.16.49.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 49 +p 6 route add 152.16.50.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 50 +p 6 route add 152.16.51.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 51 +p 6 route add 152.16.52.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 52 +p 6 route add 152.16.53.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 53 +p 6 route add 152.16.54.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 54 +p 6 route add 152.16.55.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 55 +p 6 route add 152.16.56.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 56 +p 6 route add 152.16.57.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 57 +p 6 route add 152.16.58.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 58 +p 6 route add 152.16.59.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 59 +p 6 route add 152.16.60.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 60 +p 6 route add 152.16.61.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 61 +p 6 route add 152.16.62.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 62 +p 6 route add 152.16.63.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 63 +p 6 route add 152.16.64.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 64 +p 6 route add 152.16.65.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 65 +p 6 route add 152.16.66.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 66 +p 6 route add 152.16.67.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 67 +p 6 route add 152.16.68.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 68 +p 6 route add 152.16.69.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 69 +p 6 route add 152.16.70.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 70 +p 6 route add 152.16.71.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 71 +p 6 route add 152.16.72.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 72 +p 6 route add 152.16.73.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 73 +p 6 route add 152.16.74.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 74 +p 6 route add 152.16.75.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 75 +p 6 route add 152.16.76.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 76 +p 6 route add 152.16.77.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 77 +p 6 route add 152.16.78.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 78 +p 6 route add 152.16.79.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 79 +p 6 route add 152.16.80.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 80 +p 6 route add 152.16.81.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 81 +p 6 route add 152.16.82.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 82 +p 6 route add 152.16.83.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 83 +p 6 route add 152.16.84.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 84 +p 6 route add 152.16.85.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 85 +p 6 route add 152.16.86.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 86 +p 6 route add 152.16.87.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 87 +p 6 route add 152.16.88.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 88 +p 6 route add 152.16.89.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 89 +p 6 route add 152.16.90.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 90 +p 6 route add 152.16.91.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 91 +p 6 route add 152.16.92.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 92 +p 6 route add 152.16.93.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 93 +p 6 route add 152.16.94.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 94 +p 6 route add 152.16.95.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 95 +p 6 route add 152.16.96.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 96 +p 6 route add 152.16.97.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 97 +p 6 route add 152.16.98.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 98 +p 6 route add 152.16.99.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 99 +p 6 route add 152.16.100.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 100 +p 6 route add 152.16.101.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 101 +p 6 route add 152.16.102.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 102 +p 6 route add 152.16.103.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 103 +p 6 route add 152.16.104.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 104 +p 6 route add 152.16.105.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 105 +p 6 route add 152.16.106.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 106 +p 6 route add 152.16.107.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 107 +p 6 route add 152.16.108.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 108 +p 6 route add 152.16.109.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 109 +p 6 route add 152.16.110.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 110 +p 6 route add 152.16.111.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 111 +p 6 route add 152.16.112.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 112 +p 6 route add 152.16.113.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 113 +p 6 route add 152.16.114.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 114 +p 6 route add 152.16.115.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 115 +p 6 route add 152.16.116.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 116 +p 6 route add 152.16.117.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 117 +p 6 route add 152.16.118.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 118 +p 6 route add 152.16.119.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 119 +p 6 route add 152.16.120.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 120 +p 6 route add 152.16.121.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 121 +p 6 route add 152.16.122.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 122 +p 6 route add 152.16.123.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 123 +p 6 route add 152.16.124.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 124 +p 6 route add 152.16.125.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 125 +p 6 route add 152.16.126.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 126 +p 6 route add 152.16.127.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 127 +p 6 route add 152.16.128.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 128 +p 6 route add 152.16.129.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 129 +p 6 route add 152.16.130.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 130 +p 6 route add 152.16.131.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 131 +p 6 route add 152.16.132.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 132 +p 6 route add 152.16.133.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 133 +p 6 route add 152.16.134.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 134 +p 6 route add 152.16.135.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 135 +p 6 route add 152.16.136.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 136 +p 6 route add 152.16.137.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 137 +p 6 route add 152.16.138.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 138 +p 6 route add 152.16.139.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 139 +p 6 route add 152.16.140.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 140 +p 6 route add 152.16.141.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 141 +p 6 route add 152.16.142.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 142 +p 6 route add 152.16.143.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 143 +p 6 route add 152.16.144.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 144 +p 6 route add 152.16.145.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 145 +p 6 route add 152.16.146.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 146 +p 6 route add 152.16.147.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 147 +p 6 route add 152.16.148.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 148 +p 6 route add 152.16.149.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 149 +p 6 route add 152.16.150.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 150 +p 6 route add 152.16.151.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 151 +p 6 route add 152.16.152.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 152 +p 6 route add 152.16.153.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 153 +p 6 route add 152.16.154.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 154 +p 6 route add 152.16.155.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 155 +p 6 route add 152.16.156.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 156 +p 6 route add 152.16.157.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 157 +p 6 route add 152.16.158.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 158 +p 6 route add 152.16.159.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 159 +p 6 route add 152.16.160.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 160 +p 6 route add 152.16.161.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 161 +p 6 route add 152.16.162.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 162 +p 6 route add 152.16.163.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 163 +p 6 route add 152.16.164.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 164 +p 6 route add 152.16.165.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 165 +p 6 route add 152.16.166.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 166 +p 6 route add 152.16.167.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 167 +p 6 route add 152.16.168.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 168 +p 6 route add 152.16.169.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 169 +p 6 route add 152.16.170.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 170 +p 6 route add 152.16.171.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 171 +p 6 route add 152.16.172.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 172 +p 6 route add 152.16.173.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 173 +p 6 route add 152.16.174.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 174 +p 6 route add 152.16.175.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 175 +p 6 route add 152.16.176.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 176 +p 6 route add 152.16.177.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 177 +p 6 route add 152.16.178.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 178 +p 6 route add 152.16.179.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 179 +p 6 route add 152.16.180.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 180 +p 6 route add 152.16.181.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 181 +p 6 route add 152.16.182.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 182 +p 6 route add 152.16.183.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 183 +p 6 route add 152.16.184.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 184 +p 6 route add 152.16.185.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 185 +p 6 route add 152.16.186.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 186 +p 6 route add 152.16.187.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 187 +p 6 route add 152.16.188.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 188 +p 6 route add 152.16.189.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 189 +p 6 route add 152.16.190.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 190 +p 6 route add 152.16.191.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 191 +p 6 route add 152.16.192.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 192 +p 6 route add 152.16.193.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 193 +p 6 route add 152.16.194.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 194 +p 6 route add 152.16.195.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 195 +p 6 route add 152.16.196.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 196 +p 6 route add 152.16.197.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 197 +p 6 route add 152.16.198.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 198 +p 6 route add 152.16.199.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 199 +p 6 route add 152.16.200.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 200 +p 6 route add 152.16.201.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 201 +p 6 route add 152.16.202.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 202 +p 6 route add 152.16.203.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 203 +p 6 route add 152.16.204.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 204 +p 6 route add 152.16.205.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 205 +p 6 route add 152.16.206.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 206 +p 6 route add 152.16.207.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 207 +p 6 route add 152.16.208.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 208 +p 6 route add 152.16.209.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 209 +p 6 route add 152.16.210.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 210 +p 6 route add 152.16.211.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 211 +p 6 route add 152.16.212.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 212 +p 6 route add 152.16.213.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 213 +p 6 route add 152.16.214.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 214 +p 6 route add 152.16.215.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 215 +p 6 route add 152.16.216.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 216 +p 6 route add 152.16.217.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 217 +p 6 route add 152.16.218.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 218 +p 6 route add 152.16.219.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 219 +p 6 route add 152.16.220.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 220 +p 6 route add 152.16.221.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 221 +p 6 route add 152.16.222.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 222 +p 6 route add 152.16.223.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 223 +p 6 route add 152.16.224.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 224 +p 6 route add 152.16.225.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 225 +p 6 route add 152.16.226.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 226 +p 6 route add 152.16.227.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 227 +p 6 route add 152.16.228.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 228 +p 6 route add 152.16.229.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 229 +p 6 route add 152.16.230.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 230 +p 6 route add 152.16.231.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 231 +p 6 route add 152.16.232.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 232 +p 6 route add 152.16.233.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 233 +p 6 route add 152.16.234.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 234 +p 6 route add 152.16.235.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 235 +p 6 route add 152.16.236.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 236 +p 6 route add 152.16.237.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 237 +p 6 route add 152.16.238.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 238 +p 6 route add 152.16.239.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 239 +p 6 route add 152.16.240.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 240 +p 6 route add 152.16.241.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 241 +p 6 route add 152.16.242.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 242 +p 6 route add 152.16.243.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 243 +p 6 route add 152.16.244.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 244 +p 6 route add 152.16.245.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 245 +p 6 route add 152.16.246.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 246 +p 6 route add 152.16.247.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 247 +p 6 route add 152.16.248.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 248 +p 6 route add 152.16.249.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 249 +p 6 route add 152.16.250.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 250 +p 6 route add 152.16.251.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 251 +p 6 route add 152.16.252.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 252 +p 6 route add 152.16.253.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 253 +p 6 route add 152.16.254.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 254 +p 6 route add 152.16.255.0 24 port 0 ether 00:98:10:64:14:00 qinq 0 255 +p 6 route add default 1 diff --git a/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency.yaml b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency.yaml index f71c08861..275509aa0 100644 --- a/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency.yaml +++ b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency.yaml @@ -19,7 +19,7 @@ # the profile defines a public and private side to make limited traffic correlation # between private and public side same way as it is made by IXIA solution. # -schema: "isb:traffic_profile:0.1" +schema: "nsb:traffic_profile:0.1" # This file is a template, it will be filled with values from tc.yaml before passing to the traffic generator diff --git a/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_L3.yaml b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_L3.yaml new file mode 100644 index 000000000..e7221b1f7 --- /dev/null +++ b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_L3.yaml @@ -0,0 +1,64 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +{% set vports = get(extra_args, 'vports', '2') %} +--- +schema: "nsb:traffic_profile:0.1" + +# This file is a template, it will be filled with values from tc.yaml before passing to the traffic generator + +name: rfc2544 +description: Traffic profile to run RFC2544 latency with L3 support +traffic_profile: + traffic_type : IXIARFC2544Profile # defines traffic behavior - constant or look for highest possible throughput + frame_rate : 100 # pc of linerate + duration: {{ duration }} + enable_latency: True + +{% for vport in range(vports|int) %} +uplink_{{ vport }}: + ipv4: + id: {{ (vport * 2) + 1 }} + outer_l2: + framesize: + 64B: "{{get(imix, 'imix.uplink.64B', '0') }}" + 128B: "{{get(imix, 'imix.uplink.128B', '0') }}" + 256B: "{{get(imix, 'imix.uplink.256B', '0') }}" + 373b: "{{get(imix, 'imix.uplink.373B', '0') }}" + 512B: "{{get(imix, 'imix.uplink.512B', '0') }}" + 570B: "{{get(imix, 'imix.uplink.570B', '0') }}" + 1024B: "{{get(imix, 'imix.uplink.1024B', '0') }}" + 1280B: "{{get(imix, 'imix.uplink.1280B', '0') }}" + 1400B: "{{get(imix, 'imix.uplink.1400B', '0') }}" + 1500B: "{{get(imix, 'imix.uplink.1500B', '0') }}" + 1518B: "{{get(imix, 'imix.uplink.1518B', '0') }}" + +downlink_{{vport}}: + ipv4: + id: {{ (vport * 2) + 2 }} + outer_l2: + framesize: + 64B: "{{get(imix, 'imix.downlink.64B', '0') }}" + 128B: "{{get(imix, 'imix.downlink.128B', '0') }}" + 256B: "{{get(imix, 'imix.downlink.256B', '0') }}" + 373b: "{{get(imix, 'imix.downlink.373B', '0') }}" + 512B: "{{get(imix, 'imix.downlink.512B', '0') }}" + 570B: "{{get(imix, 'imix.downlink.570B', '0') }}" + 1024B: "{{get(imix, 'imix.downlink.1024B', '0') }}" + 1280B: "{{get(imix, 'imix.downlink.1280B', '0') }}" + 1400B: "{{get(imix, 'imix.downlink.1400B', '0') }}" + 1500B: "{{get(imix, 'imix.downlink.1500B', '0') }}" + 1518B: "{{get(imix, 'imix.downlink.1518B', '0') }}" +{% endfor %} diff --git a/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_vbng_1port_congested-8.yaml b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_vbng_1port_congested-8.yaml new file mode 100644 index 000000000..a3170048a --- /dev/null +++ b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_vbng_1port_congested-8.yaml @@ -0,0 +1,412 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +schema: "nsb:traffic_profile:0.1" + +# This file is a template, it will be filled with values from tc.yaml before passing to the traffic generator + +name: rfc2544 +description: Traffic profile to run RFC2544 latency +traffic_profile: + traffic_type : IXIARFC2544PppoeScenarioProfile # defines traffic behavior - constant or look for highest possible throughput + frame_rate : 12.5% # pc of linerate + duration: {{ duration }} + enable_latency: True + +uplink_0: + ipv4: + id: 1 + port: xe0 + outer_l2: + framesize: &uplink_framesize + 64B: "{{get(imix, 'imix.uplink.64B', '0') }}" + 68B: "{{get(imix, 'imix.uplink.68B', '0') }}" + 70B: "{{get(imix, 'imix.uplink.70B', '0') }}" + 128B: "{{get(imix, 'imix.uplink.128B', '0') }}" + 256B: "{{get(imix, 'imix.uplink.256B', '0') }}" + 373B: "{{get(imix, 'imix.uplink.373B', '0') }}" + 512B: "{{get(imix, 'imix.uplink.512B', '0') }}" + 570B: "{{get(imix, 'imix.uplink.570B', '0') }}" + 932B: "{{get(imix, 'imix.uplink.932B', '0') }}" + 940B: "{{get(imix, 'imix.uplink.940B', '0') }}" + 1024B: "{{get(imix, 'imix.uplink.1024B', '0') }}" + 1280B: "{{get(imix, 'imix.uplink.1280B', '0') }}" + 1400B: "{{get(imix, 'imix.uplink.1400B', '0') }}" + 1470B: "{{get(imix, 'imix.uplink.1470B', '0') }}" + 1500B: "{{get(imix, 'imix.uplink.1500B', '0') }}" + 1518B: "{{get(imix, 'imix.uplink.1518B', '0') }}" + + outer_l3v4: + priority: + tos: + precedence: &uplink_precedence [0, 4, 7] +downlink_0: + ipv4: + id: 2 + port: xe1 + outer_l2: + framesize: &downlink_framesize + 64B: "{{get(imix, 'imix.downlink.64B', '0') }}" + 68B: "{{get(imix, 'imix.downlink.68B', '0') }}" + 70B: "{{get(imix, 'imix.downlink.70B', '0') }}" + 128B: "{{get(imix, 'imix.downlink.128B', '0') }}" + 256B: "{{get(imix, 'imix.downlink.256B', '0') }}" + 373B: "{{get(imix, 'imix.downlink.373B', '0') }}" + 512B: "{{get(imix, 'imix.downlink.512B', '0') }}" + 570B: "{{get(imix, 'imix.downlink.570B', '0') }}" + 932B: "{{get(imix, 'imix.downlink.932B', '0') }}" + 940B: "{{get(imix, 'imix.downlink.940B', '0') }}" + 1024B: "{{get(imix, 'imix.downlink.1024B', '0') }}" + 1280B: "{{get(imix, 'imix.downlink.1280B', '0') }}" + 1400B: "{{get(imix, 'imix.downlink.1400B', '0') }}" + 1470B: "{{get(imix, 'imix.downlink.1470B', '0') }}" + 1500B: "{{get(imix, 'imix.downlink.1500B', '0') }}" + 1518B: "{{get(imix, 'imix.downlink.1518B', '0') }}" + + outer_l3v4: + priority: + tos: + precedence: &downlink_precedence [0, 4, 7] +uplink_1: + ipv4: + id: 3 + port: xe0 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_1: + ipv4: + id: 4 + port: xe1 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_2: + ipv4: + id: 5 + port: xe0 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_2: + ipv4: + id: 6 + port: xe3 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_3: + ipv4: + id: 7 + port: xe0 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_3: + ipv4: + id: 8 + port: xe3 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_4: + ipv4: + id: 9 + port: xe2 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_4: + ipv4: + id: 10 + port: xe5 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_5: + ipv4: + id: 11 + port: xe2 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_5: + ipv4: + id: 12 + port: xe5 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_6: + ipv4: + id: 13 + port: xe2 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_6: + ipv4: + id: 14 + port: xe5 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_7: + ipv4: + id: 15 + port: xe2 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_7: + ipv4: + id: 16 + port: xe5 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_8: + ipv4: + id: 17 + port: xe4 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_8: + ipv4: + id: 18 + port: xe5 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_9: + ipv4: + id: 19 + port: xe4 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_9: + ipv4: + id: 20 + port: xe5 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_10: + ipv4: + id: 21 + port: xe4 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_10: + ipv4: + id: 22 + port: xe7 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_11: + ipv4: + id: 23 + port: xe4 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_11: + ipv4: + id: 24 + port: xe7 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence + +uplink_12: + ipv4: + id: 25 + port: xe6 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_12: + ipv4: + id: 26 + port: xe7 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_13: + ipv4: + id: 27 + port: xe6 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_13: + ipv4: + id: 28 + port: xe7 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_14: + ipv4: + id: 29 + port: xe6 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_14: + ipv4: + id: 30 + port: xe7 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence +uplink_15: + ipv4: + id: 31 + port: xe6 + outer_l2: + framesize: *uplink_framesize + + outer_l3v4: + priority: + tos: + precedence: *uplink_precedence +downlink_15: + ipv4: + id: 32 + port: xe7 + outer_l2: + framesize: *downlink_framesize + + outer_l3v4: + priority: + tos: + precedence: *downlink_precedence diff --git a/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_vbng_scale_up.yaml b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_vbng_scale_up.yaml new file mode 100644 index 000000000..4f427b76a --- /dev/null +++ b/samples/vnf_samples/traffic_profiles/ixia_ipv4_latency_vbng_scale_up.yaml @@ -0,0 +1,83 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +{% set svlan_per_port = get(extra_args, 'svlans_per_port') %} +{% set ports = get(extra_args, 'access_vports_num')|int %} +schema: "nsb:traffic_profile:0.1" + +# This file is a template, it will be filled with values from tc.yaml before passing to the traffic generator + +name: rfc2544 +description: Traffic profile to run RFC2544 latency +traffic_profile: + traffic_type : IXIARFC2544PppoeScenarioProfile # defines traffic behavior - constant or look for highest possible throughput + frame_rate : 12.5% # pc of linerate + duration: {{ duration }} + enable_latency: True + +{% for i in range(svlan_per_port|int * ports|int) %} +uplink_{{ i }}: + ipv4: + id: {{ (i * 2) + 1 }} + outer_l2: + framesize: + 64B: "{{get(imix, 'imix.uplink.64B', '0') }}" + 68B: "{{get(imix, 'imix.uplink.68B', '0') }}" + 70B: "{{get(imix, 'imix.uplink.70B', '0') }}" + 128B: "{{get(imix, 'imix.uplink.128B', '0') }}" + 256B: "{{get(imix, 'imix.uplink.256B', '0') }}" + 373B: "{{get(imix, 'imix.uplink.373B', '0') }}" + 512B: "{{get(imix, 'imix.uplink.512B', '0') }}" + 570B: "{{get(imix, 'imix.uplink.570B', '0') }}" + 932B: "{{get(imix, 'imix.uplink.932B', '0') }}" + 940B: "{{get(imix, 'imix.uplink.940B', '0') }}" + 1024B: "{{get(imix, 'imix.uplink.1024B', '0') }}" + 1280B: "{{get(imix, 'imix.uplink.1280B', '0') }}" + 1400B: "{{get(imix, 'imix.uplink.1400B', '0') }}" + 1470B: "{{get(imix, 'imix.uplink.1470B', '0') }}" + 1500B: "{{get(imix, 'imix.uplink.1500B', '0') }}" + 1518B: "{{get(imix, 'imix.uplink.1518B', '0') }}" + + outer_l3v4: + priority: + tos: + precedence: [0, 4, 7] +downlink_{{ i }}: + ipv4: + id: {{ (i * 2) + 2 }} + outer_l2: + framesize: + 64B: "{{get(imix, 'imix.downlink.64B', '0') }}" + 68B: "{{get(imix, 'imix.downlink.68B', '0') }}" + 70B: "{{get(imix, 'imix.downlink.70B', '0') }}" + 128B: "{{get(imix, 'imix.downlink.128B', '0') }}" + 256B: "{{get(imix, 'imix.downlink.256B', '0') }}" + 373B: "{{get(imix, 'imix.downlink.373B', '0') }}" + 512B: "{{get(imix, 'imix.downlink.512B', '0') }}" + 570B: "{{get(imix, 'imix.downlink.570B', '0') }}" + 932B: "{{get(imix, 'imix.downlink.932B', '0') }}" + 940B: "{{get(imix, 'imix.downlink.940B', '0') }}" + 1024B: "{{get(imix, 'imix.downlink.1024B', '0') }}" + 1280B: "{{get(imix, 'imix.downlink.1280B', '0') }}" + 1400B: "{{get(imix, 'imix.downlink.1400B', '0') }}" + 1470B: "{{get(imix, 'imix.downlink.1470B', '0') }}" + 1500B: "{{get(imix, 'imix.downlink.1500B', '0') }}" + 1518B: "{{get(imix, 'imix.downlink.1518B', '0') }}" + + outer_l3v4: + priority: + tos: + precedence: [0, 4, 7] +{% endfor %} diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-1024K.rxf b/samples/vnf_samples/traffic_profiles/ixload/HTTP-ConcurrentConnections_2Ports.rxf index bd0b83f95..bbf12d8cf 100644 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-1024K.rxf +++ b/samples/vnf_samples/traffic_profiles/ixload/HTTP-ConcurrentConnections_2Ports.rxf @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <root ver="[21, [1, [0, [0]]]]" type="ixRepository"> <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> + <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="628fdbe1-4254-48b1-8765-a4d5bbafd1ff" version="6.70.442"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442"> <name type="String">uplink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.442"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.442"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.442"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442"> <name type="String">downlink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.442"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.442"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.442"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.80.2"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.80.2"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.80.2"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.80.2"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <payloadAttrTypes type="ListNode" /> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.442"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> </_smSessionXml> <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> <xml type="str"></xml> @@ -10,11 +10,11 @@ <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> </_quickTestConfig> <lastApiUniqueId type="int">15481</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_2Ports-CC-1024K.rxf</name> + <version type="str">8.30.115.152</version> + <name type="str">HTTP-ConcurrentConnections_2Ports.rxf</name> <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_2Ports-CC-256K.rxf</last> + <path type="str">C:\ixload</path> + <last type="str">HTTP-ConcurrentConnections_2Ports.rxf</last> <activeTest type="str">Test1</activeTest> <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> @@ -54,8 +54,8 @@ <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> <name type="str">Client</name> <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> + <item ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> + <name type="str">HTTP client@uplink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -98,8 +98,8 @@ <inUse type="bool">True</inUse> <customPortMap type="NoneType">None</customPortMap> <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> + <destinationCommunity ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> + <name type="str">HTTP server@downlink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -484,7 +484,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> + <name type="str">downlink_0</name> <role type="str">Server</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -498,7 +498,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> + <name type="str">Network Range IP-R2 in downlink_0 (152.40.40.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -743,6 +743,7 @@ <browserEmulationName type="str">Custom1</browserEmulationName> <enableSsl type="int">0</enableSsl> <sslVersion type="int">3</sslVersion> + <disableMacValidation type="int">0</disableMacValidation> <sslReuseMethod type="int">0</sslReuseMethod> <sequentialSessionReuse type="int">0</sequentialSessionReuse> <enablesslRecordSize type="int">0</enablesslRecordSize> @@ -807,7 +808,7 @@ </item> </outputList> <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/1024k.html</pageObject> + <pageObject type="str">/1b.html</pageObject> <abort type="str">None</abort> <arguments type="str"></arguments> <namevalueargs type="str"></namevalueargs> @@ -862,12 +863,16 @@ <ipPreference type="int">2</ipPreference> <tcpCloseOption type="int">0</tcpCloseOption> <piggybackAck type="int">1</piggybackAck> + <tcpFastOpen type="int">0</tcpFastOpen> <enableLargeHeader type="int">0</enableLargeHeader> <maxHeaderLen type="int">1024</maxHeaderLen> <useAllIPs type="int">0</useAllIPs> <enableDecompressSupport type="int">0</enableDecompressSupport> <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> + <enableAuth type="int">0</enableAuth> + <authProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthProfileList" itemtype="ixAuthProfile"/> + <ipMappingList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthIpMapList" itemtype="ixAuthIpMap"/> <uniqueID type="int">1</uniqueID> <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> @@ -889,7 +894,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> + <name type="str">uplink_0</name> <role type="str">Client</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -903,7 +908,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> + <name type="str">Network Range IP-R1 in uplink_0 (152.16.100.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -1258,7 +1263,7 @@ <pollingInterval type="int">2</pollingInterval> <allowCsvLogging type="bool">False</allowCsvLogging> <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6&EOXC@8_BL1*U6[TN9P(-!2VA'EF$9# 1'FD+:KRB2&>B<DC.UPS&K_ M^]K.00@)K78_M''\/.]AY[']FLZ'_=I7MHA0' 9W-: 9M0_W'8=!]@6C'2)' MJ*DU#<W0S%:SQ@F(BMX1IDSYA YW-;AA>(^A1K?:1EA0A@(7:3G>5P(W'.+& MO<EX/AC/%?V^,YT-'-[LSNW)N/C^,NC;\^[#:"" WN3IP1X/^EEHFK7>D\!9 M\/O.D* ?$><<E"WT(W17,VLR$-V.PM4*!ZNT?PA]BB0VQVOD' +W ;W"+0Y) MRC RE#*XWDP)<K',+,'K$A^L"$]&3.O\L$$I!B0VX=/LA]";DI AE^5LYR1" MA<0>L>>A0#BBYSD. KCP41\RZ+"0H'/"]#@[^3P:9=87(_&$)A';1"R;R:?( M9WCC%\<F27WG#=H3W O949Y?+Z(L7'_DW^PUXS33F$/LHRED&2+[NSXBC*9/ MA6LZH.T]Q7>U5\8V;5W?[7;:KJZ%9*6;A@'T;T\CQWU%:ZCB@'\T/AFUS,I[ MVTH&U=.H?;2$?$QRGD[?).T4[I$P40%!B*.%]QGT</B1A-&F ." W9L=73PZ M>B6KYV,4L&%(UI$/'<08UTOV[?Z^^F7?O^7_NK=7/Z*0W7Z)%W?\THX?0+/B MQN]G;#& A/O'$?SSV/SGV(R7!%\0LR@HYG'EL]N3?2>-;,0-A:LD]+A% D1L MJ8)FW/YPM6*WN<RXJR2*'2Q#!Q$,??P3BB7T %<Y)<3F[Y9#DLE1$^^SCUFG M.2J*R'+]PI+9X"K'+E_I&UKDQ4PQGC%<(X&*-A"=>KZWW*8'&5J%Y" 88@GK MC_/Y-+/-H^?VO>4J75B",&P_V]_LKCH?.'/G6?A1M\.O+_9TVW@QIR%7O=KK MJ>!!(_NEC%"P+T\0D70 'CT.ZMA[;M6/Y)@5O1)^W"4BOL!QWN*(-":+O\3. MNT7T$NL1KUY]_L<J6=G^RFR^=S*\Q(@(INNYUF+A>JJ%W(7: #<+=6$"I()6 MRS"0Z0&S;LDYJ7)P'HJ+*:\3_@J U91.<M"YW6>*B&/W!>BH0+54$Z@MTZHW M+*M15YN&"9H\F6O5,EMFO64V#+5N-&]NFBWI.F==FA+7-V'(FP2"81J@I0*@ M&JTYJ+>M1AM86M,TK&M@JL9UVS#2;$^L*OR&_ SG#(4OYW: _61),GY")JNU MXI/$F^(3=%]Q@-)IZ8^=CZH0>:S?,LH;GKJ>)TYTP03-&\VT&II9-S1@WAP- MVVUPNEGI52[.@]G[,6*[D'Q/MVG.NM;,N JK2V=EE N.9LA'D,JQV?L1KS>4 M:PT8RJ![ZBQ'N^ L7>N]]C/?S%8$KA6Q!5#EU_UU\[=GFU=CSW&49Y&U6HQ2 MO5?8^QG:\$T&D=RPZEI+C!RT$B\EE/(E^_G)<:$O1P.,1'"%_G-#9YN#/RWX M5BW,3GI+12HKDS,92N/W' "Y@P)17C/0R4:<9!4"Z86^S_<L4<9)12,&^0?P M8IF=8I7&(P1)@#QQ> K>4I1W>0<%O-+/T ]WLB"AI6Y.X4HO?.\33%D("J)< MVSDW1?R2HZ3TO^2K2*EVQ^ORT U].^"*6T(7E7LL954ZG8410S,8K,J]%> R M-^N-V#WFF5R*4U^&5^GRHMYB77J'0*B6W[=*3K\3RA=1Z)V1LJ574:T)=EQ9 M9[>T_W!!S IO<4$)_(-\!Z)CA(/OR#L6YD<;/5'"L45+<7&1O>]((2L!/R7N M:M);+7>#KIWB\5VFIH3$0T3>=:#+A4%':(O\]-*I2PM^HPW6F\O764Y(Z@-Y M9\G=9P74"X,E7D4$YF^08M8I!UT.RN^1O&\AB7.,#T]AGQRC4-9!Y\>KAZA+ ML%1( N;*7>Z5'VD^/\_2,DM\[210/JZ'MF\8Y!AZ/O/_JPUI+L8I'ME/'/?_ % D1BE1\ end </svConfiguration> + <svConfiguration type="str">begin 666 <data> M>)RE6&MSXC84_2L>.LVTT_K-*X1D)P&R898$!K-I9YK.CK %T:ZQO9+,HYW^ M]U[)QAACDTS[81=9Y]RK*^GHZBK=#]N5KZPQ920,KFNF9M0^W'0=CO@SP1M, M#U!3:QJ:H=E&LP8$S$3OB#"N?,*[ZQJ*.-D2I+&U%@D+QG'@8BW'^XVB"" P M[HV?9H.GF:+?="?3@0/-V]EP_%3\_C+H#V>W=Z.! 'KCQ[OATZ"?#<VRUGL" M.!G\IGM/\?<8.#MEC?P87]>LFAR(K4?A<DF"Y;[_'OD,2VQ&5MC9!>X=?D5K M$M(]P\A0QM$JFE#L$AE9BML2'RPI!".6=;:+\!XS)3:&9?9#Y$UHR+'+<[8S M&N-"8 _$\W @'+'3& <!FONXCSAR>$CQ*6%R6)U\'/4RZ[,C04#CF$<QSU;R M,?8YB?SBW"2I[[Q!>T1;(3L&\?5BQL/51]BSUXS3W(]Y3WP\03Q#9/^MCREG M^U\%-!VPSI:1Z]HKYU%'US>;C;:QM9 N=<LP3/WWQY'CON(54DD FP:+4<NL MO+>MY*#Z?M0^7B"8DURGXR]).X9[-$Q50#$&M/ ]11X)/](PC@H "?B-U=7% M3U>O9/5\@@-^'])5[",'<PYZR?;N[XL?MOTK^._VZN)['/*KY^1P)Q^=Y,?4 M&DGCUQ.VF$#*_>, _GEH_G-H)D<"#L0T#HIQ7/C\ZBCO[$<VDH8"*@D]L$B! MF"]4LYFT/UPL^54N,G"5CC(,%J&#*4$^^0N)(W2'ECDE).;OED,:R4$3[[-/ M6,<Q*HJ(<O6%IZL!*B<NG/2(%7D)4\SG":VP0$7;%)UZOK?<IH<X7H9T)QCB M".L/L]DDL\VCI_:]Q7)_L 2AUWDA6Y&07H0/M1<&;DPI* M:09*@V!=K$H+\ M-;I=R$$*+LICQ'0_!X\=YG7H/;7JQW+:BEX)/VQ2'9_A.&]Q1!CC^5<QMS5F MYU@/9/GJPS]>R<I2+!]"^N1D03 53-=S&_.YZZD-[,[5NGDY5^>6B56SU3(, M;'FF93?DFE0Y.!T*])27"GR:9J,IG>2@4[O/#%-GV!>@HYIJ0[5,U3(:EFF: MMF&IIM6"MF&T3#AX]7K]TKRT6VK;;C3;=>D\9U\:%(B<<NR- \&P#+.MFC! M:V9:G7J]8S0TPVC:ET;[%\/H&,8^WB.K"K\A7.3 4.!,=P+BI^>2PS69'MF* M34DRXR-R7TF ]POC#$?/D]'ST)GV'2/18RGO#7>WGB?N=L$T#<VR6QHLI&;: M]L%N@=M&IV/74;W3;-M&!\V]1L>RVS^:UG$VTZL\G\8PW#YAO@GIMWT>!U8; M*C0--*"9#4NZ*R.=<37%/D9,3GJX'4$&4-J::2B#VV-G.=H99[ET OEN2=%* M$2F"*3]MV\V?7X90L+TDH[R(N-7!K?HY\B!1%4*OSBG#[11'D(8PS4W/UEJB M5&VT4R\EE/*C_?G1<9&/DWU,95GH/S5TUCGXTQRRNC [ZBV5LBQB3L0JC=]S M5^3N%,R@O&#C2*;E"KF&O@^Y351\\GK ',%&>(G@CK%*XQ%&-,">N&<%;R$J MP;R# E[IY]X/-[)V8:5NCN%*+Y C!5/6C((H,T#.31$_YRA])9SS5:14NX,2 M/G1#?QB XA;(Q>4>2UF53J=AS/$4!<MR;P6XS,TJ$GEDELFEN/1E>)4NS^HM MT:6W"X1JX6E6<DL>49Y%37A"RHY>16$GV$D1GCWH_L-;,JO1Q5LF\'?RVQ0= M(Q)\P]ZAAC_8Z*D2#BU6BHLW[TU7"ED)X!JYKDEOM=QCNW:,)\^>FA)2#U/Y M+$(N"(.-\!K[^_>I+BW@\1NLHO,O7R"D=81\WN2>O@*"0FY!EC%%^<>F6'4& MH N@W(_T>XUH$F-RQ0K[]+)%LEXZO80]S%Q*I$)2,%<9@U>XW'RXV?;EF-CM ?=*#\N!Y>OV&08^CYR/^O-J2YF*?XR?X:<O,ONMVD" end </svConfiguration> <svRestConfiguration type="str">(dp1 S'HTTP Server Per URL' p2 ccopy_reg _reconstructor p3 (cLib.Rest.ixPersistentStatSource ixConfiguredStatsList p4 c__builtin__ list p5 (lp6 g3 (cLib.Rest.ixPersistentStatSource ixConfiguredStat p7 c__builtin__ object p8 NtRp9 (dp10 S'proxyPropertyList' p11 NsS'_objectID' p12 I0 sS'enabled' p13 I01 sS'filterList' p14 g3 (cLib.Rest.ixPersistentStatSource ixRestFilters p15 g8 NtRp16 (dp17 S'cardFilters' p18 g3 (cLib.Rest.ixPersistentStatSource ixCardFilterList p19 g5 (ltRp20 (dp21 g12 I-1 sS'_resourceLocked' p22 I00 sg11 NsbsS'activityFilters' p23 g3 (cLib.Rest.ixPersistentStatSource ixActivityFilterList p24 g5 (ltRp25 (dp26 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sS'chassisFilters' p27 g3 (cLib.Rest.ixPersistentStatSource ixChassisFilterList p28 g5 (ltRp29 (dp30 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sS'portFilters' p31 g3 (cLib.Rest.ixPersistentStatSource ixPortFilterList p32 g5 (ltRp33 (dp34 g12 I-1 sg22 I00 sg11 NsbsbsS'caption' p35 S'HTTP Requests Received' p36 sg22 I00 sS'aggregationType' p37 S'kSum' p38 sS'statName' p39 g36 sbag3 (g7 g8 NtRp40 (dp41 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp42 (dp43 g18 g3 (g19 g5 (ltRp44 (dp45 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp46 (dp47 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp48 (dp49 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp50 (dp51 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp53 (dp54 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp55 (dp56 g18 g3 (g19 g5 (ltRp57 (dp58 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp59 (dp60 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp61 (dp62 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp63 (dp64 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp66 (dp67 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp68 (dp69 g18 g3 (g19 g5 (ltRp70 (dp71 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp72 (dp73 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp74 (dp75 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp76 (dp77 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (50x)' p78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp79 (dp80 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp81 (dp82 g18 g3 (g19 g5 (ltRp83 (dp84 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp85 (dp86 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp87 (dp88 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp89 (dp90 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write Error)' p91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp92 (dp93 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp94 (dp95 g18 g3 (g19 g5 (ltRp96 (dp97 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp98 (dp99 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp100 (dp101 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp102 (dp103 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent' p104 sg22 I00 sg37 g38 sg39 g104 sbag3 (g7 g8 NtRp105 (dp106 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp107 (dp108 g18 g3 (g19 g5 (ltRp109 (dp110 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp111 (dp112 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp113 (dp114 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp115 (dp116 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (1xx)' p117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp118 (dp119 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp120 (dp121 g18 g3 (g19 g5 (ltRp122 (dp123 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp124 (dp125 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp126 (dp127 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp128 (dp129 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (2xx)' p130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp131 (dp132 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp133 (dp134 g18 g3 (g19 g5 (ltRp135 (dp136 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp137 (dp138 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp139 (dp140 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp141 (dp142 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (3xx)' p143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp144 (dp145 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp146 (dp147 g18 g3 (g19 g5 (ltRp148 (dp149 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp150 (dp151 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp152 (dp153 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp154 (dp155 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (4xx)' p156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp157 (dp158 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp159 (dp160 g18 g3 (g19 g5 (ltRp161 (dp162 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp163 (dp164 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp165 (dp166 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp167 (dp168 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (5xx)' p169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp170 (dp171 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp172 (dp173 g18 g3 (g19 g5 (ltRp174 (dp175 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp176 (dp177 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp178 (dp179 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp180 (dp181 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (Other)' p182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp183 (dp184 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp185 (dp186 g18 g3 (g19 g5 (ltRp187 (dp188 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp189 (dp190 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp191 (dp192 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp193 (dp194 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Write Error)' p195 sg22 I00 sg37 g38 sg39 g195 sbag3 (g7 g8 NtRp196 (dp197 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp198 (dp199 g18 g3 (g19 g5 (ltRp200 (dp201 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp202 (dp203 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp204 (dp205 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp206 (dp207 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Aborted)' p208 sg22 I00 sg37 g38 sg39 g208 sbag3 (g7 g8 NtRp209 (dp210 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp211 (dp212 g18 g3 (g19 g5 (ltRp213 (dp214 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp215 (dp216 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp217 (dp218 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp219 (dp220 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Other)' p221 sg22 I00 sg37 g38 sg39 g221 sbag3 (g7 g8 NtRp222 (dp223 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp224 (dp225 g18 g3 (g19 g5 (ltRp226 (dp227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp228 (dp229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp230 (dp231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp232 (dp233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Sent' p234 sg22 I00 sg37 g38 sg39 g234 sbag3 (g7 g8 NtRp235 (dp236 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp237 (dp238 g18 g3 (g19 g5 (ltRp239 (dp240 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp241 (dp242 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp243 (dp244 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp245 (dp246 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp248 (dp249 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp250 (dp251 g18 g3 (g19 g5 (ltRp252 (dp253 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp254 (dp255 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp256 (dp257 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp258 (dp259 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p260 sg22 I00 sg37 S'kWeightedAverage' p261 sg39 g260 sbag3 (g7 g8 NtRp262 (dp263 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp264 (dp265 g18 g3 (g19 g5 (ltRp266 (dp267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp268 (dp269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp270 (dp271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp272 (dp273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p274 sg22 I00 sg37 g261 sg39 g274 sbag3 (g7 g8 NtRp275 (dp276 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp277 (dp278 g18 g3 (g19 g5 (ltRp279 (dp280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp281 (dp282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp283 (dp284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp285 (dp286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Received' p287 sg22 I00 sg37 g38 sg39 g287 sbag3 (g7 g8 NtRp288 (dp289 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp290 (dp291 g18 g3 (g19 g5 (ltRp292 (dp293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp294 (dp295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp296 (dp297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp298 (dp299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp301 (dp302 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp303 (dp304 g18 g3 (g19 g5 (ltRp305 (dp306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp307 (dp308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp309 (dp310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp311 (dp312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Received Chunk Size' p313 sg22 I00 sg37 g261 sg39 g313 sbag3 (g7 g8 NtRp314 (dp315 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp316 (dp317 g18 g3 (g19 g5 (ltRp318 (dp319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp320 (dp321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp322 (dp323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp324 (dp325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p326 sg22 I00 sg37 g261 sg39 g326 sbag3 (g7 g8 NtRp327 (dp328 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp329 (dp330 g18 g3 (g19 g5 (ltRp331 (dp332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp333 (dp334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp335 (dp336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp337 (dp338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Received' p339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp340 (dp341 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp342 (dp343 g18 g3 (g19 g5 (ltRp344 (dp345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp346 (dp347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp348 (dp349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp350 (dp351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Successful' p352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp353 (dp354 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp355 (dp356 g18 g3 (g19 g5 (ltRp357 (dp358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp359 (dp360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp361 (dp362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp363 (dp364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Failed' p365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp366 (dp367 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp368 (dp369 g18 g3 (g19 g5 (ltRp370 (dp371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp372 (dp373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp374 (dp375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp376 (dp377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Request Received' p378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp379 (dp380 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp381 (dp382 g18 g3 (g19 g5 (ltRp383 (dp384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp385 (dp386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp387 (dp388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp389 (dp390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Response Sent' p391 sg22 I00 sg37 g38 sg39 g391 sbatRp392 (dp393 g12 I27 sg22 I00 sg11 NsbsS'HTTP Server' p394 g3 (g4 g5 (lp395 g3 (g7 g8 NtRp396 (dp397 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp398 (dp399 g18 g3 (g19 g5 (ltRp400 (dp401 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp402 (dp403 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp404 (dp405 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp406 (dp407 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g36 sg22 I00 sg37 g38 sg39 g36 sbag3 (g7 g8 NtRp408 (dp409 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp410 (dp411 g18 g3 (g19 g5 (ltRp412 (dp413 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp414 (dp415 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp416 (dp417 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp418 (dp419 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp420 (dp421 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp422 (dp423 g18 g3 (g19 g5 (ltRp424 (dp425 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp426 (dp427 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp428 (dp429 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp430 (dp431 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p432 sg22 I00 sg37 g38 sg39 g432 sbag3 (g7 g8 NtRp433 (dp434 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp435 (dp436 g18 g3 (g19 g5 (ltRp437 (dp438 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp439 (dp440 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp441 (dp442 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp443 (dp444 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp445 (dp446 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp447 (dp448 g18 g3 (g19 g5 (ltRp449 (dp450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp451 (dp452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp453 (dp454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp455 (dp456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp457 (dp458 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp459 (dp460 g18 g3 (g19 g5 (ltRp461 (dp462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp463 (dp464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp465 (dp466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp467 (dp468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp469 (dp470 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp471 (dp472 g18 g3 (g19 g5 (ltRp473 (dp474 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp475 (dp476 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp477 (dp478 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp479 (dp480 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p481 sg22 I00 sg37 g38 sg39 g481 sbag3 (g7 g8 NtRp482 (dp483 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp484 (dp485 g18 g3 (g19 g5 (ltRp486 (dp487 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp488 (dp489 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp490 (dp491 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp492 (dp493 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p494 sg22 I00 sg37 g38 sg39 g494 sbag3 (g7 g8 NtRp495 (dp496 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp497 (dp498 g18 g3 (g19 g5 (ltRp499 (dp500 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp501 (dp502 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp503 (dp504 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp505 (dp506 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p507 sg22 I00 sg37 g38 sg39 g507 sbag3 (g7 g8 NtRp508 (dp509 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp510 (dp511 g18 g3 (g19 g5 (ltRp512 (dp513 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp514 (dp515 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp516 (dp517 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp518 (dp519 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp520 (dp521 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp522 (dp523 g18 g3 (g19 g5 (ltRp524 (dp525 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp526 (dp527 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp528 (dp529 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp530 (dp531 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp532 (dp533 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp534 (dp535 g18 g3 (g19 g5 (ltRp536 (dp537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp538 (dp539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp540 (dp541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp542 (dp543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp544 (dp545 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp546 (dp547 g18 g3 (g19 g5 (ltRp548 (dp549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp550 (dp551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp552 (dp553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp554 (dp555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp556 (dp557 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp558 (dp559 g18 g3 (g19 g5 (ltRp560 (dp561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp562 (dp563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp564 (dp565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp566 (dp567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp568 (dp569 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp570 (dp571 g18 g3 (g19 g5 (ltRp572 (dp573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp574 (dp575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp576 (dp577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp578 (dp579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp580 (dp581 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp582 (dp583 g18 g3 (g19 g5 (ltRp584 (dp585 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp586 (dp587 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp588 (dp589 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp590 (dp591 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p592 sg22 I00 sg37 g38 sg39 g592 sbag3 (g7 g8 NtRp593 (dp594 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp595 (dp596 g18 g3 (g19 g5 (ltRp597 (dp598 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp599 (dp600 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp601 (dp602 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp603 (dp604 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p605 sg22 I00 sg37 g38 sg39 g605 sbag3 (g7 g8 NtRp606 (dp607 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp608 (dp609 g18 g3 (g19 g5 (ltRp610 (dp611 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp612 (dp613 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp614 (dp615 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp616 (dp617 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p618 sg22 I00 sg37 g38 sg39 g618 sbag3 (g7 g8 NtRp619 (dp620 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp621 (dp622 g18 g3 (g19 g5 (ltRp623 (dp624 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp625 (dp626 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp627 (dp628 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp629 (dp630 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p631 sg22 I00 sg37 g38 sg39 g631 sbag3 (g7 g8 NtRp632 (dp633 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp634 (dp635 g18 g3 (g19 g5 (ltRp636 (dp637 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp638 (dp639 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp640 (dp641 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp642 (dp643 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p644 sg22 I00 sg37 g38 sg39 g644 sbag3 (g7 g8 NtRp645 (dp646 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp647 (dp648 g18 g3 (g19 g5 (ltRp649 (dp650 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp651 (dp652 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp653 (dp654 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp655 (dp656 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p657 sg22 I00 sg37 g38 sg39 g657 sbag3 (g7 g8 NtRp658 (dp659 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp660 (dp661 g18 g3 (g19 g5 (ltRp662 (dp663 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp664 (dp665 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp666 (dp667 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp668 (dp669 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Matching ServerID' p670 sg22 I00 sg37 g38 sg39 g670 sbag3 (g7 g8 NtRp671 (dp672 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp673 (dp674 g18 g3 (g19 g5 (ltRp675 (dp676 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp677 (dp678 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp679 (dp680 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp681 (dp682 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Non-matching ServerID' p683 sg22 I00 sg37 g38 sg39 g683 sbag3 (g7 g8 NtRp684 (dp685 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp686 (dp687 g18 g3 (g19 g5 (ltRp688 (dp689 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp690 (dp691 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp692 (dp693 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp694 (dp695 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Encoded Responses Sent' p696 sg22 I00 sg37 g38 sg39 g696 sbag3 (g7 g8 NtRp697 (dp698 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp699 (dp700 g18 g3 (g19 g5 (ltRp701 (dp702 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp703 (dp704 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp705 (dp706 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp707 (dp708 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp709 (dp710 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp711 (dp712 g18 g3 (g19 g5 (ltRp713 (dp714 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp715 (dp716 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp717 (dp718 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp719 (dp720 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Transfer-Encoded Requests Received' p721 sg22 I00 sg37 g38 sg39 g721 sbag3 (g7 g8 NtRp722 (dp723 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp724 (dp725 g18 g3 (g19 g5 (ltRp726 (dp727 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp728 (dp729 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp730 (dp731 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp732 (dp733 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp734 (dp735 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp736 (dp737 g18 g3 (g19 g5 (ltRp738 (dp739 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp740 (dp741 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp742 (dp743 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp744 (dp745 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp746 (dp747 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp748 (dp749 g18 g3 (g19 g5 (ltRp750 (dp751 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp752 (dp753 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp754 (dp755 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp756 (dp757 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp758 (dp759 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp760 (dp761 g18 g3 (g19 g5 (ltRp762 (dp763 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp764 (dp765 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp766 (dp767 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp768 (dp769 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp770 (dp771 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp772 (dp773 g18 g3 (g19 g5 (ltRp774 (dp775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp776 (dp777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp778 (dp779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp780 (dp781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp782 (dp783 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp784 (dp785 g18 g3 (g19 g5 (ltRp786 (dp787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp788 (dp789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp790 (dp791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp792 (dp793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g391 sg22 I00 sg37 g38 sg39 g391 sbag3 (g7 g8 NtRp794 (dp795 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp796 (dp797 g18 g3 (g19 g5 (ltRp798 (dp799 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp800 (dp801 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp802 (dp803 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp804 (dp805 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Sent' p806 sg22 I00 sg37 g38 sg39 g806 sbag3 (g7 g8 NtRp807 (dp808 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp809 (dp810 g18 g3 (g19 g5 (ltRp811 (dp812 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp813 (dp814 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp815 (dp816 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp817 (dp818 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Sent' p819 sg22 I00 sg37 g38 sg39 g819 sbag3 (g7 g8 NtRp820 (dp821 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp822 (dp823 g18 g3 (g19 g5 (ltRp824 (dp825 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp826 (dp827 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp828 (dp829 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp830 (dp831 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Sent' p832 sg22 I00 sg37 g38 sg39 g832 sbag3 (g7 g8 NtRp833 (dp834 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp835 (dp836 g18 g3 (g19 g5 (ltRp837 (dp838 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp839 (dp840 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp841 (dp842 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp843 (dp844 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Sent' p845 sg22 I00 sg37 g38 sg39 g845 sbag3 (g7 g8 NtRp846 (dp847 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp848 (dp849 g18 g3 (g19 g5 (ltRp850 (dp851 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp852 (dp853 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp854 (dp855 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp856 (dp857 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Sent' p858 sg22 I00 sg37 g38 sg39 g858 sbag3 (g7 g8 NtRp859 (dp860 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp861 (dp862 g18 g3 (g19 g5 (ltRp863 (dp864 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp865 (dp866 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp867 (dp868 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp869 (dp870 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Sent' p871 sg22 I00 sg37 g38 sg39 g871 sbag3 (g7 g8 NtRp872 (dp873 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp874 (dp875 g18 g3 (g19 g5 (ltRp876 (dp877 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp878 (dp879 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp880 (dp881 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp882 (dp883 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Sent' p884 sg22 I00 sg37 g38 sg39 g884 sbag3 (g7 g8 NtRp885 (dp886 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp887 (dp888 g18 g3 (g19 g5 (ltRp889 (dp890 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp891 (dp892 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp893 (dp894 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp895 (dp896 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Sent' p897 sg22 I00 sg37 g38 sg39 g897 sbag3 (g7 g8 NtRp898 (dp899 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp900 (dp901 g18 g3 (g19 g5 (ltRp902 (dp903 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp904 (dp905 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp906 (dp907 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp908 (dp909 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Sent' p910 sg22 I00 sg37 g38 sg39 g910 sbag3 (g7 g8 NtRp911 (dp912 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp913 (dp914 g18 g3 (g19 g5 (ltRp915 (dp916 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp917 (dp918 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp919 (dp920 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp921 (dp922 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Sent' p923 sg22 I00 sg37 g38 sg39 g923 sbag3 (g7 g8 NtRp924 (dp925 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp926 (dp927 g18 g3 (g19 g5 (ltRp928 (dp929 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp930 (dp931 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp932 (dp933 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp934 (dp935 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Received' p936 sg22 I00 sg37 g38 sg39 g936 sbag3 (g7 g8 NtRp937 (dp938 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp939 (dp940 g18 g3 (g19 g5 (ltRp941 (dp942 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp943 (dp944 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp945 (dp946 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp947 (dp948 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Received' p949 sg22 I00 sg37 g38 sg39 g949 sbag3 (g7 g8 NtRp950 (dp951 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp952 (dp953 g18 g3 (g19 g5 (ltRp954 (dp955 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp956 (dp957 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp958 (dp959 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp960 (dp961 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Received' p962 sg22 I00 sg37 g38 sg39 g962 sbag3 (g7 g8 NtRp963 (dp964 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp965 (dp966 g18 g3 (g19 g5 (ltRp967 (dp968 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp969 (dp970 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp971 (dp972 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp973 (dp974 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Received' p975 sg22 I00 sg37 g38 sg39 g975 sbag3 (g7 g8 NtRp976 (dp977 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp978 (dp979 g18 g3 (g19 g5 (ltRp980 (dp981 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp982 (dp983 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp984 (dp985 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp986 (dp987 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Received' p988 sg22 I00 sg37 g38 sg39 g988 sbag3 (g7 g8 NtRp989 (dp990 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp991 (dp992 g18 g3 (g19 g5 (ltRp993 (dp994 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp995 (dp996 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp997 (dp998 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp999 (dp1000 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Received' p1001 sg22 I00 sg37 g38 sg39 g1001 sbag3 (g7 g8 NtRp1002 (dp1003 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp1004 (dp1005 g18 g3 (g19 g5 (ltRp1006 (dp1007 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1008 (dp1009 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1010 (dp1011 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1012 (dp1013 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Received' p1014 sg22 I00 sg37 g38 sg39 g1014 sbag3 (g7 g8 NtRp1015 (dp1016 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp1017 (dp1018 g18 g3 (g19 g5 (ltRp1019 (dp1020 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1021 (dp1022 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1023 (dp1024 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1025 (dp1026 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Received' p1027 sg22 I00 sg37 g38 sg39 g1027 sbag3 (g7 g8 NtRp1028 (dp1029 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp1030 (dp1031 g18 g3 (g19 g5 (ltRp1032 (dp1033 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1034 (dp1035 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1036 (dp1037 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1038 (dp1039 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Received' p1040 sg22 I00 sg37 g38 sg39 g1040 sbag3 (g7 g8 NtRp1041 (dp1042 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp1043 (dp1044 g18 g3 (g19 g5 (ltRp1045 (dp1046 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1047 (dp1048 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1049 (dp1050 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1051 (dp1052 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Received' p1053 sg22 I00 sg37 g38 sg39 g1053 sbag3 (g7 g8 NtRp1054 (dp1055 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp1056 (dp1057 g18 g3 (g19 g5 (ltRp1058 (dp1059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1060 (dp1061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1062 (dp1063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1064 (dp1065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Client' p1066 sg22 I00 sg37 g38 sg39 g1066 sbag3 (g7 g8 NtRp1067 (dp1068 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp1069 (dp1070 g18 g3 (g19 g5 (ltRp1071 (dp1072 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1073 (dp1074 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1075 (dp1076 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1077 (dp1078 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Server' p1079 sg22 I00 sg37 g38 sg39 g1079 sbag3 (g7 g8 NtRp1080 (dp1081 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp1082 (dp1083 g18 g3 (g19 g5 (ltRp1084 (dp1085 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1086 (dp1087 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1088 (dp1089 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1090 (dp1091 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Client to Server' p1092 sg22 I00 sg37 g38 sg39 g1092 sbag3 (g7 g8 NtRp1093 (dp1094 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp1095 (dp1096 g18 g3 (g19 g5 (ltRp1097 (dp1098 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1099 (dp1100 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1101 (dp1102 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1103 (dp1104 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Server to Client' p1105 sg22 I00 sg37 g38 sg39 g1105 sbag3 (g7 g8 NtRp1106 (dp1107 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp1108 (dp1109 g18 g3 (g19 g5 (ltRp1110 (dp1111 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1112 (dp1113 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1114 (dp1115 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1116 (dp1117 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Client to Server' p1118 sg22 I00 sg37 g38 sg39 g1118 sbag3 (g7 g8 NtRp1119 (dp1120 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp1121 (dp1122 g18 g3 (g19 g5 (ltRp1123 (dp1124 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1125 (dp1126 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1127 (dp1128 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1129 (dp1130 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Server to Client' p1131 sg22 I00 sg37 g38 sg39 g1131 sbag3 (g7 g8 NtRp1132 (dp1133 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp1134 (dp1135 g18 g3 (g19 g5 (ltRp1136 (dp1137 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1138 (dp1139 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1140 (dp1141 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1142 (dp1143 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Succeeded' p1144 sg22 I00 sg37 g38 sg39 g1144 sbag3 (g7 g8 NtRp1145 (dp1146 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp1147 (dp1148 g18 g3 (g19 g5 (ltRp1149 (dp1150 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1151 (dp1152 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1153 (dp1154 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1155 (dp1156 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Failed' p1157 sg22 I00 sg37 g38 sg39 g1157 sbag3 (g7 g8 NtRp1158 (dp1159 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp1160 (dp1161 g18 g3 (g19 g5 (ltRp1162 (dp1163 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1164 (dp1165 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1166 (dp1167 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1168 (dp1169 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Protocol Error' p1170 sg22 I00 sg37 g38 sg39 g1170 sbag3 (g7 g8 NtRp1171 (dp1172 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp1173 (dp1174 g18 g3 (g19 g5 (ltRp1175 (dp1176 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1177 (dp1178 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1179 (dp1180 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1181 (dp1182 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Internal Error' p1183 sg22 I00 sg37 g38 sg39 g1183 sbag3 (g7 g8 NtRp1184 (dp1185 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp1186 (dp1187 g18 g3 (g19 g5 (ltRp1188 (dp1189 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1190 (dp1191 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1192 (dp1193 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1194 (dp1195 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Flow Control Error' p1196 sg22 I00 sg37 g38 sg39 g1196 sbag3 (g7 g8 NtRp1197 (dp1198 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp1199 (dp1200 g18 g3 (g19 g5 (ltRp1201 (dp1202 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1203 (dp1204 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1205 (dp1206 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1207 (dp1208 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Settings Timeout Error' p1209 sg22 I00 sg37 g38 sg39 g1209 sbag3 (g7 g8 NtRp1210 (dp1211 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp1212 (dp1213 g18 g3 (g19 g5 (ltRp1214 (dp1215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1216 (dp1217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1218 (dp1219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1220 (dp1221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Closed Error' p1222 sg22 I00 sg37 g38 sg39 g1222 sbag3 (g7 g8 NtRp1223 (dp1224 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp1225 (dp1226 g18 g3 (g19 g5 (ltRp1227 (dp1228 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1229 (dp1230 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1231 (dp1232 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1233 (dp1234 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Frame Size Error' p1235 sg22 I00 sg37 g38 sg39 g1235 sbag3 (g7 g8 NtRp1236 (dp1237 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp1238 (dp1239 g18 g3 (g19 g5 (ltRp1240 (dp1241 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1242 (dp1243 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1244 (dp1245 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1246 (dp1247 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Refused Stream Error' p1248 sg22 I00 sg37 g38 sg39 g1248 sbag3 (g7 g8 NtRp1249 (dp1250 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp1251 (dp1252 g18 g3 (g19 g5 (ltRp1253 (dp1254 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1255 (dp1256 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1257 (dp1258 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1259 (dp1260 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Cancelled Error' p1261 sg22 I00 sg37 g38 sg39 g1261 sbag3 (g7 g8 NtRp1262 (dp1263 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp1264 (dp1265 g18 g3 (g19 g5 (ltRp1266 (dp1267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1268 (dp1269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1270 (dp1271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1272 (dp1273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Compression Error' p1274 sg22 I00 sg37 g38 sg39 g1274 sbag3 (g7 g8 NtRp1275 (dp1276 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp1277 (dp1278 g18 g3 (g19 g5 (ltRp1279 (dp1280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1281 (dp1282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1283 (dp1284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1285 (dp1286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connect Error' p1287 sg22 I00 sg37 g38 sg39 g1287 sbag3 (g7 g8 NtRp1288 (dp1289 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp1290 (dp1291 g18 g3 (g19 g5 (ltRp1292 (dp1293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1294 (dp1295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1296 (dp1297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1298 (dp1299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Enhance Calm Error' p1300 sg22 I00 sg37 g38 sg39 g1300 sbag3 (g7 g8 NtRp1301 (dp1302 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp1303 (dp1304 g18 g3 (g19 g5 (ltRp1305 (dp1306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1307 (dp1308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1309 (dp1310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1311 (dp1312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Inadequate Security Error' p1313 sg22 I00 sg37 g38 sg39 g1313 sbag3 (g7 g8 NtRp1314 (dp1315 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp1316 (dp1317 g18 g3 (g19 g5 (ltRp1318 (dp1319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1320 (dp1321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1322 (dp1323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1324 (dp1325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HTTP1.1 Required Error' p1326 sg22 I00 sg37 g38 sg39 g1326 sbag3 (g7 g8 NtRp1327 (dp1328 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp1329 (dp1330 g18 g3 (g19 g5 (ltRp1331 (dp1332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1333 (dp1334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1335 (dp1336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1337 (dp1338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p1339 sg22 I00 sg37 g38 sg39 g1339 sbag3 (g7 g8 NtRp1340 (dp1341 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp1342 (dp1343 g18 g3 (g19 g5 (ltRp1344 (dp1345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1346 (dp1347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1348 (dp1349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1350 (dp1351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p1352 sg22 I00 sg37 g38 sg39 g1352 sbag3 (g7 g8 NtRp1353 (dp1354 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp1355 (dp1356 g18 g3 (g19 g5 (ltRp1357 (dp1358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1359 (dp1360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1361 (dp1362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1363 (dp1364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p1365 sg22 I00 sg37 g38 sg39 g1365 sbag3 (g7 g8 NtRp1366 (dp1367 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp1368 (dp1369 g18 g3 (g19 g5 (ltRp1370 (dp1371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1372 (dp1373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1374 (dp1375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1376 (dp1377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p1378 sg22 I00 sg37 g38 sg39 g1378 sbag3 (g7 g8 NtRp1379 (dp1380 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp1381 (dp1382 g18 g3 (g19 g5 (ltRp1383 (dp1384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1385 (dp1386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1387 (dp1388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1389 (dp1390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p1391 sg22 I00 sg37 g38 sg39 g1391 sbag3 (g7 g8 NtRp1392 (dp1393 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp1394 (dp1395 g18 g3 (g19 g5 (ltRp1396 (dp1397 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1398 (dp1399 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1400 (dp1401 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1402 (dp1403 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p1404 sg22 I00 sg37 g38 sg39 g1404 sbag3 (g7 g8 NtRp1405 (dp1406 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp1407 (dp1408 g18 g3 (g19 g5 (ltRp1409 (dp1410 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1411 (dp1412 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1413 (dp1414 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1415 (dp1416 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p1417 sg22 I00 sg37 g38 sg39 g1417 sbag3 (g7 g8 NtRp1418 (dp1419 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp1420 (dp1421 g18 g3 (g19 g5 (ltRp1422 (dp1423 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1424 (dp1425 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1426 (dp1427 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1428 (dp1429 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p1430 sg22 I00 sg37 g38 sg39 g1430 sbag3 (g7 g8 NtRp1431 (dp1432 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp1433 (dp1434 g18 g3 (g19 g5 (ltRp1435 (dp1436 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1437 (dp1438 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1439 (dp1440 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1441 (dp1442 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p1443 sg22 I00 sg37 g38 sg39 g1443 sbag3 (g7 g8 NtRp1444 (dp1445 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp1446 (dp1447 g18 g3 (g19 g5 (ltRp1448 (dp1449 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1450 (dp1451 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1452 (dp1453 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1454 (dp1455 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p1456 sg22 I00 sg37 g38 sg39 g1456 sbag3 (g7 g8 NtRp1457 (dp1458 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp1459 (dp1460 g18 g3 (g19 g5 (ltRp1461 (dp1462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1463 (dp1464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1465 (dp1466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1467 (dp1468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p1469 sg22 I00 sg37 g38 sg39 g1469 sbag3 (g7 g8 NtRp1470 (dp1471 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp1472 (dp1473 g18 g3 (g19 g5 (ltRp1474 (dp1475 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1476 (dp1477 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1478 (dp1479 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1480 (dp1481 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p1482 sg22 I00 sg37 g38 sg39 g1482 sbag3 (g7 g8 NtRp1483 (dp1484 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp1485 (dp1486 g18 g3 (g19 g5 (ltRp1487 (dp1488 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1489 (dp1490 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1491 (dp1492 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1493 (dp1494 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p1495 sg22 I00 sg37 g38 sg39 g1495 sbag3 (g7 g8 NtRp1496 (dp1497 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp1498 (dp1499 g18 g3 (g19 g5 (ltRp1500 (dp1501 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1502 (dp1503 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1504 (dp1505 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1506 (dp1507 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p1508 sg22 I00 sg37 g38 sg39 g1508 sbag3 (g7 g8 NtRp1509 (dp1510 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp1511 (dp1512 g18 g3 (g19 g5 (ltRp1513 (dp1514 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1515 (dp1516 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1517 (dp1518 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1519 (dp1520 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p1521 sg22 I00 sg37 g38 sg39 g1521 sbag3 (g7 g8 NtRp1522 (dp1523 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp1524 (dp1525 g18 g3 (g19 g5 (ltRp1526 (dp1527 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1528 (dp1529 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1530 (dp1531 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1532 (dp1533 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p1534 sg22 I00 sg37 g38 sg39 g1534 sbag3 (g7 g8 NtRp1535 (dp1536 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp1537 (dp1538 g18 g3 (g19 g5 (ltRp1539 (dp1540 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1541 (dp1542 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1543 (dp1544 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1545 (dp1546 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p1547 sg22 I00 sg37 g38 sg39 g1547 sbag3 (g7 g8 NtRp1548 (dp1549 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp1550 (dp1551 g18 g3 (g19 g5 (ltRp1552 (dp1553 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1554 (dp1555 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1556 (dp1557 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1558 (dp1559 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p1560 sg22 I00 sg37 g38 sg39 g1560 sbag3 (g7 g8 NtRp1561 (dp1562 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp1563 (dp1564 g18 g3 (g19 g5 (ltRp1565 (dp1566 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1567 (dp1568 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1569 (dp1570 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1571 (dp1572 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p1573 sg22 I00 sg37 g38 sg39 g1573 sbag3 (g7 g8 NtRp1574 (dp1575 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp1576 (dp1577 g18 g3 (g19 g5 (ltRp1578 (dp1579 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1580 (dp1581 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1582 (dp1583 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1584 (dp1585 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p1586 sg22 I00 sg37 g38 sg39 g1586 sbag3 (g7 g8 NtRp1587 (dp1588 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp1589 (dp1590 g18 g3 (g19 g5 (ltRp1591 (dp1592 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1593 (dp1594 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1595 (dp1596 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1597 (dp1598 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p1599 sg22 I00 sg37 g38 sg39 g1599 sbag3 (g7 g8 NtRp1600 (dp1601 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp1602 (dp1603 g18 g3 (g19 g5 (ltRp1604 (dp1605 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1606 (dp1607 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1608 (dp1609 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1610 (dp1611 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p1612 sg22 I00 sg37 g38 sg39 g1612 sbag3 (g7 g8 NtRp1613 (dp1614 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp1615 (dp1616 g18 g3 (g19 g5 (ltRp1617 (dp1618 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1619 (dp1620 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1621 (dp1622 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1623 (dp1624 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p1625 sg22 I00 sg37 g38 sg39 g1625 sbag3 (g7 g8 NtRp1626 (dp1627 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp1628 (dp1629 g18 g3 (g19 g5 (ltRp1630 (dp1631 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1632 (dp1633 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1634 (dp1635 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1636 (dp1637 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p1638 sg22 I00 sg37 g38 sg39 g1638 sbag3 (g7 g8 NtRp1639 (dp1640 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp1641 (dp1642 g18 g3 (g19 g5 (ltRp1643 (dp1644 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1645 (dp1646 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1647 (dp1648 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1649 (dp1650 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p1651 sg22 I00 sg37 g38 sg39 g1651 sbag3 (g7 g8 NtRp1652 (dp1653 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp1654 (dp1655 g18 g3 (g19 g5 (ltRp1656 (dp1657 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1658 (dp1659 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1660 (dp1661 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1662 (dp1663 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p1664 sg22 I00 sg37 g38 sg39 g1664 sbag3 (g7 g8 NtRp1665 (dp1666 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp1667 (dp1668 g18 g3 (g19 g5 (ltRp1669 (dp1670 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1671 (dp1672 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1673 (dp1674 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1675 (dp1676 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p1677 sg22 I00 sg37 g38 sg39 g1677 sbag3 (g7 g8 NtRp1678 (dp1679 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp1680 (dp1681 g18 g3 (g19 g5 (ltRp1682 (dp1683 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1684 (dp1685 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1686 (dp1687 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1688 (dp1689 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p1690 sg22 I00 sg37 g38 sg39 g1690 sbag3 (g7 g8 NtRp1691 (dp1692 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp1693 (dp1694 g18 g3 (g19 g5 (ltRp1695 (dp1696 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1697 (dp1698 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1699 (dp1700 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1701 (dp1702 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p1703 sg22 I00 sg37 g38 sg39 g1703 sbag3 (g7 g8 NtRp1704 (dp1705 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp1706 (dp1707 g18 g3 (g19 g5 (ltRp1708 (dp1709 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1710 (dp1711 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1712 (dp1713 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1714 (dp1715 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p1716 sg22 I00 sg37 g38 sg39 g1716 sbag3 (g7 g8 NtRp1717 (dp1718 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp1719 (dp1720 g18 g3 (g19 g5 (ltRp1721 (dp1722 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1723 (dp1724 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1725 (dp1726 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1727 (dp1728 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p1729 sg22 I00 sg37 g38 sg39 g1729 sbag3 (g7 g8 NtRp1730 (dp1731 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp1732 (dp1733 g18 g3 (g19 g5 (ltRp1734 (dp1735 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1736 (dp1737 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1738 (dp1739 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1740 (dp1741 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p1742 sg22 I00 sg37 g38 sg39 g1742 sbag3 (g7 g8 NtRp1743 (dp1744 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp1745 (dp1746 g18 g3 (g19 g5 (ltRp1747 (dp1748 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1749 (dp1750 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1751 (dp1752 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1753 (dp1754 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p1755 sg22 I00 sg37 g38 sg39 g1755 sbag3 (g7 g8 NtRp1756 (dp1757 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp1758 (dp1759 g18 g3 (g19 g5 (ltRp1760 (dp1761 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1762 (dp1763 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1764 (dp1765 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1766 (dp1767 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p1768 sg22 I00 sg37 g38 sg39 g1768 sbag3 (g7 g8 NtRp1769 (dp1770 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp1771 (dp1772 g18 g3 (g19 g5 (ltRp1773 (dp1774 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1775 (dp1776 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1777 (dp1778 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1779 (dp1780 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p1781 sg22 I00 sg37 g38 sg39 g1781 sbag3 (g7 g8 NtRp1782 (dp1783 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp1784 (dp1785 g18 g3 (g19 g5 (ltRp1786 (dp1787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1788 (dp1789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1790 (dp1791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1792 (dp1793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p1794 sg22 I00 sg37 g38 sg39 g1794 sbag3 (g7 g8 NtRp1795 (dp1796 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp1797 (dp1798 g18 g3 (g19 g5 (ltRp1799 (dp1800 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1801 (dp1802 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1803 (dp1804 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1805 (dp1806 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p1807 sg22 I00 sg37 g38 sg39 g1807 sbag3 (g7 g8 NtRp1808 (dp1809 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp1810 (dp1811 g18 g3 (g19 g5 (ltRp1812 (dp1813 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1814 (dp1815 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1816 (dp1817 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1818 (dp1819 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p1820 sg22 I00 sg37 g38 sg39 g1820 sbag3 (g7 g8 NtRp1821 (dp1822 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp1823 (dp1824 g18 g3 (g19 g5 (ltRp1825 (dp1826 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1827 (dp1828 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1829 (dp1830 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1831 (dp1832 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p1833 sg22 I00 sg37 g38 sg39 g1833 sbag3 (g7 g8 NtRp1834 (dp1835 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp1836 (dp1837 g18 g3 (g19 g5 (ltRp1838 (dp1839 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1840 (dp1841 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1842 (dp1843 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1844 (dp1845 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p1846 sg22 I00 sg37 g38 sg39 g1846 sbag3 (g7 g8 NtRp1847 (dp1848 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp1849 (dp1850 g18 g3 (g19 g5 (ltRp1851 (dp1852 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1853 (dp1854 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1855 (dp1856 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1857 (dp1858 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p1859 sg22 I00 sg37 g38 sg39 g1859 sbag3 (g7 g8 NtRp1860 (dp1861 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp1862 (dp1863 g18 g3 (g19 g5 (ltRp1864 (dp1865 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1866 (dp1867 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1868 (dp1869 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1870 (dp1871 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p1872 sg22 I00 sg37 g38 sg39 g1872 sbag3 (g7 g8 NtRp1873 (dp1874 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp1875 (dp1876 g18 g3 (g19 g5 (ltRp1877 (dp1878 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1879 (dp1880 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1881 (dp1882 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1883 (dp1884 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p1885 sg22 I00 sg37 g38 sg39 g1885 sbag3 (g7 g8 NtRp1886 (dp1887 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp1888 (dp1889 g18 g3 (g19 g5 (ltRp1890 (dp1891 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1892 (dp1893 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1894 (dp1895 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1896 (dp1897 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p1898 sg22 I00 sg37 g38 sg39 g1898 sbag3 (g7 g8 NtRp1899 (dp1900 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp1901 (dp1902 g18 g3 (g19 g5 (ltRp1903 (dp1904 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1905 (dp1906 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1907 (dp1908 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1909 (dp1910 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p1911 sg22 I00 sg37 g38 sg39 g1911 sbag3 (g7 g8 NtRp1912 (dp1913 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp1914 (dp1915 g18 g3 (g19 g5 (ltRp1916 (dp1917 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1918 (dp1919 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1920 (dp1921 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1922 (dp1923 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p1924 sg22 I00 sg37 g38 sg39 g1924 sbag3 (g7 g8 NtRp1925 (dp1926 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp1927 (dp1928 g18 g3 (g19 g5 (ltRp1929 (dp1930 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1931 (dp1932 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1933 (dp1934 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1935 (dp1936 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p1937 sg22 I00 sg37 g38 sg39 g1937 sbag3 (g7 g8 NtRp1938 (dp1939 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp1940 (dp1941 g18 g3 (g19 g5 (ltRp1942 (dp1943 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1944 (dp1945 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1946 (dp1947 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1948 (dp1949 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p1950 sg22 I00 sg37 g38 sg39 g1950 sbag3 (g7 g8 NtRp1951 (dp1952 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp1953 (dp1954 g18 g3 (g19 g5 (ltRp1955 (dp1956 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1957 (dp1958 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1959 (dp1960 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1961 (dp1962 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p1963 sg22 I00 sg37 g38 sg39 g1963 sbag3 (g7 g8 NtRp1964 (dp1965 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp1966 (dp1967 g18 g3 (g19 g5 (ltRp1968 (dp1969 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1970 (dp1971 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1972 (dp1973 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1974 (dp1975 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p1976 sg22 I00 sg37 g38 sg39 g1976 sbag3 (g7 g8 NtRp1977 (dp1978 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp1979 (dp1980 g18 g3 (g19 g5 (ltRp1981 (dp1982 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1983 (dp1984 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1985 (dp1986 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1987 (dp1988 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p1989 sg22 I00 sg37 g38 sg39 g1989 sbag3 (g7 g8 NtRp1990 (dp1991 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp1992 (dp1993 g18 g3 (g19 g5 (ltRp1994 (dp1995 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1996 (dp1997 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1998 (dp1999 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2000 (dp2001 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p2002 sg22 I00 sg37 g38 sg39 g2002 sbag3 (g7 g8 NtRp2003 (dp2004 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp2005 (dp2006 g18 g3 (g19 g5 (ltRp2007 (dp2008 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2009 (dp2010 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2011 (dp2012 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2013 (dp2014 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p2015 sg22 I00 sg37 g38 sg39 g2015 sbag3 (g7 g8 NtRp2016 (dp2017 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp2018 (dp2019 g18 g3 (g19 g5 (ltRp2020 (dp2021 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2022 (dp2023 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2024 (dp2025 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2026 (dp2027 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p2028 sg22 I00 sg37 g38 sg39 g2028 sbag3 (g7 g8 NtRp2029 (dp2030 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp2031 (dp2032 g18 g3 (g19 g5 (ltRp2033 (dp2034 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2035 (dp2036 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2037 (dp2038 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2039 (dp2040 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p2041 sg22 I00 sg37 g38 sg39 g2041 sbag3 (g7 g8 NtRp2042 (dp2043 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp2044 (dp2045 g18 g3 (g19 g5 (ltRp2046 (dp2047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2048 (dp2049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2050 (dp2051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2052 (dp2053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p2054 sg22 I00 sg37 g38 sg39 g2054 sbag3 (g7 g8 NtRp2055 (dp2056 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp2057 (dp2058 g18 g3 (g19 g5 (ltRp2059 (dp2060 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2061 (dp2062 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2063 (dp2064 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2065 (dp2066 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p2067 sg22 I00 sg37 g38 sg39 g2067 sbag3 (g7 g8 NtRp2068 (dp2069 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp2070 (dp2071 g18 g3 (g19 g5 (ltRp2072 (dp2073 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2074 (dp2075 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2076 (dp2077 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2078 (dp2079 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p2080 sg22 I00 sg37 g38 sg39 g2080 sbag3 (g7 g8 NtRp2081 (dp2082 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp2083 (dp2084 g18 g3 (g19 g5 (ltRp2085 (dp2086 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2087 (dp2088 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2089 (dp2090 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2091 (dp2092 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p2093 sg22 I00 sg37 g38 sg39 g2093 sbag3 (g7 g8 NtRp2094 (dp2095 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp2096 (dp2097 g18 g3 (g19 g5 (ltRp2098 (dp2099 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2100 (dp2101 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2102 (dp2103 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2104 (dp2105 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p2106 sg22 I00 sg37 g38 sg39 g2106 sbag3 (g7 g8 NtRp2107 (dp2108 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp2109 (dp2110 g18 g3 (g19 g5 (ltRp2111 (dp2112 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2113 (dp2114 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2115 (dp2116 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2117 (dp2118 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p2119 sg22 I00 sg37 g38 sg39 g2119 sbag3 (g7 g8 NtRp2120 (dp2121 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp2122 (dp2123 g18 g3 (g19 g5 (ltRp2124 (dp2125 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2126 (dp2127 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2128 (dp2129 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2130 (dp2131 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p2132 sg22 I00 sg37 g38 sg39 g2132 sbag3 (g7 g8 NtRp2133 (dp2134 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp2135 (dp2136 g18 g3 (g19 g5 (ltRp2137 (dp2138 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2139 (dp2140 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2141 (dp2142 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2143 (dp2144 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p2145 sg22 I00 sg37 g38 sg39 g2145 sbag3 (g7 g8 NtRp2146 (dp2147 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp2148 (dp2149 g18 g3 (g19 g5 (ltRp2150 (dp2151 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2152 (dp2153 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2154 (dp2155 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2156 (dp2157 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p2158 sg22 I00 sg37 g38 sg39 g2158 sbag3 (g7 g8 NtRp2159 (dp2160 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp2161 (dp2162 g18 g3 (g19 g5 (ltRp2163 (dp2164 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2165 (dp2166 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2167 (dp2168 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2169 (dp2170 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p2171 sg22 I00 sg37 g38 sg39 g2171 sbag3 (g7 g8 NtRp2172 (dp2173 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp2174 (dp2175 g18 g3 (g19 g5 (ltRp2176 (dp2177 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2178 (dp2179 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2180 (dp2181 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2182 (dp2183 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p2184 sg22 I00 sg37 g38 sg39 g2184 sbag3 (g7 g8 NtRp2185 (dp2186 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp2187 (dp2188 g18 g3 (g19 g5 (ltRp2189 (dp2190 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2191 (dp2192 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2193 (dp2194 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2195 (dp2196 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p2197 sg22 I00 sg37 g38 sg39 g2197 sbag3 (g7 g8 NtRp2198 (dp2199 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp2200 (dp2201 g18 g3 (g19 g5 (ltRp2202 (dp2203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2204 (dp2205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2206 (dp2207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2208 (dp2209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p2210 sg22 I00 sg37 g38 sg39 g2210 sbag3 (g7 g8 NtRp2211 (dp2212 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp2213 (dp2214 g18 g3 (g19 g5 (ltRp2215 (dp2216 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2217 (dp2218 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2219 (dp2220 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2221 (dp2222 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p2223 sg22 I00 sg37 g38 sg39 g2223 sbag3 (g7 g8 NtRp2224 (dp2225 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp2226 (dp2227 g18 g3 (g19 g5 (ltRp2228 (dp2229 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2230 (dp2231 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2232 (dp2233 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2234 (dp2235 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p2236 sg22 I00 sg37 g38 sg39 g2236 sbag3 (g7 g8 NtRp2237 (dp2238 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp2239 (dp2240 g18 g3 (g19 g5 (ltRp2241 (dp2242 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2243 (dp2244 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2245 (dp2246 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2247 (dp2248 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p2249 sg22 I00 sg37 g38 sg39 g2249 sbag3 (g7 g8 NtRp2250 (dp2251 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp2252 (dp2253 g18 g3 (g19 g5 (ltRp2254 (dp2255 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2256 (dp2257 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2258 (dp2259 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2260 (dp2261 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p2262 sg22 I00 sg37 g38 sg39 g2262 sbag3 (g7 g8 NtRp2263 (dp2264 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp2265 (dp2266 g18 g3 (g19 g5 (ltRp2267 (dp2268 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2269 (dp2270 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2271 (dp2272 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2273 (dp2274 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p2275 sg22 I00 sg37 g38 sg39 g2275 sbag3 (g7 g8 NtRp2276 (dp2277 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp2278 (dp2279 g18 g3 (g19 g5 (ltRp2280 (dp2281 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2282 (dp2283 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2284 (dp2285 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2286 (dp2287 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p2288 sg22 I00 sg37 g38 sg39 g2288 sbag3 (g7 g8 NtRp2289 (dp2290 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp2291 (dp2292 g18 g3 (g19 g5 (ltRp2293 (dp2294 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2295 (dp2296 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2297 (dp2298 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2299 (dp2300 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p2301 sg22 I00 sg37 g38 sg39 g2301 sbag3 (g7 g8 NtRp2302 (dp2303 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp2304 (dp2305 g18 g3 (g19 g5 (ltRp2306 (dp2307 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2308 (dp2309 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2310 (dp2311 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2312 (dp2313 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p2314 sg22 I00 sg37 g38 sg39 g2314 sbag3 (g7 g8 NtRp2315 (dp2316 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp2317 (dp2318 g18 g3 (g19 g5 (ltRp2319 (dp2320 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2321 (dp2322 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2323 (dp2324 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2325 (dp2326 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p2327 sg22 I00 sg37 g38 sg39 g2327 sbag3 (g7 g8 NtRp2328 (dp2329 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp2330 (dp2331 g18 g3 (g19 g5 (ltRp2332 (dp2333 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2334 (dp2335 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2336 (dp2337 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2338 (dp2339 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p2340 sg22 I00 sg37 g38 sg39 g2340 sbag3 (g7 g8 NtRp2341 (dp2342 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp2343 (dp2344 g18 g3 (g19 g5 (ltRp2345 (dp2346 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2347 (dp2348 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2349 (dp2350 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2351 (dp2352 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p2353 sg22 I00 sg37 g38 sg39 g2353 sbag3 (g7 g8 NtRp2354 (dp2355 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp2356 (dp2357 g18 g3 (g19 g5 (ltRp2358 (dp2359 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2360 (dp2361 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2362 (dp2363 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2364 (dp2365 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p2366 sg22 I00 sg37 g38 sg39 g2366 sbag3 (g7 g8 NtRp2367 (dp2368 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp2369 (dp2370 g18 g3 (g19 g5 (ltRp2371 (dp2372 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2373 (dp2374 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2375 (dp2376 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2377 (dp2378 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p2379 sg22 I00 sg37 g38 sg39 g2379 sbag3 (g7 g8 NtRp2380 (dp2381 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp2382 (dp2383 g18 g3 (g19 g5 (ltRp2384 (dp2385 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2386 (dp2387 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2388 (dp2389 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2390 (dp2391 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p2392 sg22 I00 sg37 g38 sg39 g2392 sbag3 (g7 g8 NtRp2393 (dp2394 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp2395 (dp2396 g18 g3 (g19 g5 (ltRp2397 (dp2398 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2399 (dp2400 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2401 (dp2402 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2403 (dp2404 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p2405 sg22 I00 sg37 g38 sg39 g2405 sbag3 (g7 g8 NtRp2406 (dp2407 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp2408 (dp2409 g18 g3 (g19 g5 (ltRp2410 (dp2411 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2412 (dp2413 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2414 (dp2415 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2416 (dp2417 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p2418 sg22 I00 sg37 g38 sg39 g2418 sbag3 (g7 g8 NtRp2419 (dp2420 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp2421 (dp2422 g18 g3 (g19 g5 (ltRp2423 (dp2424 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2425 (dp2426 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2427 (dp2428 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2429 (dp2430 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p2431 sg22 I00 sg37 g38 sg39 g2431 sbag3 (g7 g8 NtRp2432 (dp2433 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp2434 (dp2435 g18 g3 (g19 g5 (ltRp2436 (dp2437 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2438 (dp2439 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2440 (dp2441 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2442 (dp2443 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p2444 sg22 I00 sg37 g38 sg39 g2444 sbag3 (g7 g8 NtRp2445 (dp2446 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp2447 (dp2448 g18 g3 (g19 g5 (ltRp2449 (dp2450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2451 (dp2452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2453 (dp2454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2455 (dp2456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p2457 sg22 I00 sg37 g38 sg39 g2457 sbag3 (g7 g8 NtRp2458 (dp2459 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp2460 (dp2461 g18 g3 (g19 g5 (ltRp2462 (dp2463 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2464 (dp2465 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2466 (dp2467 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2468 (dp2469 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p2470 sg22 I00 sg37 g38 sg39 g2470 sbag3 (g7 g8 NtRp2471 (dp2472 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp2473 (dp2474 g18 g3 (g19 g5 (ltRp2475 (dp2476 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2477 (dp2478 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2479 (dp2480 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2481 (dp2482 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p2483 sg22 I00 sg37 g38 sg39 g2483 sbag3 (g7 g8 NtRp2484 (dp2485 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp2486 (dp2487 g18 g3 (g19 g5 (ltRp2488 (dp2489 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2490 (dp2491 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2492 (dp2493 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2494 (dp2495 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p2496 sg22 I00 sg37 g38 sg39 g2496 sbag3 (g7 g8 NtRp2497 (dp2498 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp2499 (dp2500 g18 g3 (g19 g5 (ltRp2501 (dp2502 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2503 (dp2504 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2505 (dp2506 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2507 (dp2508 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p2509 sg22 I00 sg37 g38 sg39 g2509 sbag3 (g7 g8 NtRp2510 (dp2511 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp2512 (dp2513 g18 g3 (g19 g5 (ltRp2514 (dp2515 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2516 (dp2517 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2518 (dp2519 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2520 (dp2521 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p2522 sg22 I00 sg37 g38 sg39 g2522 sbag3 (g7 g8 NtRp2523 (dp2524 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp2525 (dp2526 g18 g3 (g19 g5 (ltRp2527 (dp2528 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2529 (dp2530 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2531 (dp2532 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2533 (dp2534 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p2535 sg22 I00 sg37 g38 sg39 g2535 sbag3 (g7 g8 NtRp2536 (dp2537 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp2538 (dp2539 g18 g3 (g19 g5 (ltRp2540 (dp2541 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2542 (dp2543 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2544 (dp2545 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2546 (dp2547 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p2548 sg22 I00 sg37 g38 sg39 g2548 sbag3 (g7 g8 NtRp2549 (dp2550 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp2551 (dp2552 g18 g3 (g19 g5 (ltRp2553 (dp2554 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2555 (dp2556 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2557 (dp2558 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2559 (dp2560 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p2561 sg22 I00 sg37 g38 sg39 g2561 sbag3 (g7 g8 NtRp2562 (dp2563 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp2564 (dp2565 g18 g3 (g19 g5 (ltRp2566 (dp2567 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2568 (dp2569 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2570 (dp2571 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2572 (dp2573 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p2574 sg22 I00 sg37 g38 sg39 g2574 sbag3 (g7 g8 NtRp2575 (dp2576 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp2577 (dp2578 g18 g3 (g19 g5 (ltRp2579 (dp2580 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2581 (dp2582 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2583 (dp2584 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2585 (dp2586 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p2587 sg22 I00 sg37 g38 sg39 g2587 sbag3 (g7 g8 NtRp2588 (dp2589 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp2590 (dp2591 g18 g3 (g19 g5 (ltRp2592 (dp2593 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2594 (dp2595 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2596 (dp2597 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2598 (dp2599 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p2600 sg22 I00 sg37 g38 sg39 g2600 sbag3 (g7 g8 NtRp2601 (dp2602 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp2603 (dp2604 g18 g3 (g19 g5 (ltRp2605 (dp2606 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2607 (dp2608 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2609 (dp2610 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2611 (dp2612 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p2613 sg22 I00 sg37 g38 sg39 g2613 sbag3 (g7 g8 NtRp2614 (dp2615 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp2616 (dp2617 g18 g3 (g19 g5 (ltRp2618 (dp2619 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2620 (dp2621 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2622 (dp2623 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2624 (dp2625 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p2626 sg22 I00 sg37 g38 sg39 g2626 sbag3 (g7 g8 NtRp2627 (dp2628 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp2629 (dp2630 g18 g3 (g19 g5 (ltRp2631 (dp2632 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2633 (dp2634 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2635 (dp2636 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2637 (dp2638 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p2639 sg22 I00 sg37 g38 sg39 g2639 sbag3 (g7 g8 NtRp2640 (dp2641 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp2642 (dp2643 g18 g3 (g19 g5 (ltRp2644 (dp2645 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2646 (dp2647 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2648 (dp2649 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2650 (dp2651 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p2652 sg22 I00 sg37 g38 sg39 g2652 sbag3 (g7 g8 NtRp2653 (dp2654 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp2655 (dp2656 g18 g3 (g19 g5 (ltRp2657 (dp2658 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2659 (dp2660 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2661 (dp2662 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2663 (dp2664 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p2665 sg22 I00 sg37 g38 sg39 g2665 sbag3 (g7 g8 NtRp2666 (dp2667 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp2668 (dp2669 g18 g3 (g19 g5 (ltRp2670 (dp2671 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2672 (dp2673 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2674 (dp2675 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2676 (dp2677 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p2678 sg22 I00 sg37 g38 sg39 g2678 sbag3 (g7 g8 NtRp2679 (dp2680 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp2681 (dp2682 g18 g3 (g19 g5 (ltRp2683 (dp2684 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2685 (dp2686 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2687 (dp2688 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2689 (dp2690 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p2691 sg22 I00 sg37 g38 sg39 g2691 sbag3 (g7 g8 NtRp2692 (dp2693 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp2694 (dp2695 g18 g3 (g19 g5 (ltRp2696 (dp2697 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2698 (dp2699 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2700 (dp2701 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2702 (dp2703 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p2704 sg22 I00 sg37 g38 sg39 g2704 sbag3 (g7 g8 NtRp2705 (dp2706 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp2707 (dp2708 g18 g3 (g19 g5 (ltRp2709 (dp2710 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2711 (dp2712 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2713 (dp2714 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2715 (dp2716 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p2717 sg22 I00 sg37 g38 sg39 g2717 sbag3 (g7 g8 NtRp2718 (dp2719 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp2720 (dp2721 g18 g3 (g19 g5 (ltRp2722 (dp2723 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2724 (dp2725 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2726 (dp2727 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2728 (dp2729 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p2730 sg22 I00 sg37 g38 sg39 g2730 sbag3 (g7 g8 NtRp2731 (dp2732 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp2733 (dp2734 g18 g3 (g19 g5 (ltRp2735 (dp2736 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2737 (dp2738 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2739 (dp2740 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2741 (dp2742 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p2743 sg22 I00 sg37 g38 sg39 g2743 sbag3 (g7 g8 NtRp2744 (dp2745 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp2746 (dp2747 g18 g3 (g19 g5 (ltRp2748 (dp2749 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2750 (dp2751 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2752 (dp2753 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2754 (dp2755 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p2756 sg22 I00 sg37 g38 sg39 g2756 sbag3 (g7 g8 NtRp2757 (dp2758 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp2759 (dp2760 g18 g3 (g19 g5 (ltRp2761 (dp2762 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2763 (dp2764 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2765 (dp2766 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2767 (dp2768 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p2769 sg22 I00 sg37 g38 sg39 g2769 sbag3 (g7 g8 NtRp2770 (dp2771 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp2772 (dp2773 g18 g3 (g19 g5 (ltRp2774 (dp2775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2776 (dp2777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2778 (dp2779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2780 (dp2781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p2782 sg22 I00 sg37 g38 sg39 g2782 sbag3 (g7 g8 NtRp2783 (dp2784 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp2785 (dp2786 g18 g3 (g19 g5 (ltRp2787 (dp2788 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2789 (dp2790 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2791 (dp2792 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2793 (dp2794 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p2795 sg22 I00 sg37 g38 sg39 g2795 sbatRp2796 (dp2797 g12 I185 sg22 I00 sg11 NsbsS'HTTP Client Per URL' p2798 g3 (g4 g5 (lp2799 g3 (g7 g8 NtRp2800 (dp2801 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp2802 (dp2803 g18 g3 (g19 g5 (ltRp2804 (dp2805 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2806 (dp2807 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2808 (dp2809 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2810 (dp2811 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Sent' p2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp2813 (dp2814 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp2815 (dp2816 g18 g3 (g19 g5 (ltRp2817 (dp2818 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2819 (dp2820 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2821 (dp2822 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2823 (dp2824 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp2826 (dp2827 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp2828 (dp2829 g18 g3 (g19 g5 (ltRp2830 (dp2831 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2832 (dp2833 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2834 (dp2835 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2836 (dp2837 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (Provisional)' p2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp2839 (dp2840 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp2841 (dp2842 g18 g3 (g19 g5 (ltRp2843 (dp2844 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2845 (dp2846 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2847 (dp2848 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2849 (dp2850 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp2852 (dp2853 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp2854 (dp2855 g18 g3 (g19 g5 (ltRp2856 (dp2857 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2858 (dp2859 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2860 (dp2861 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2862 (dp2863 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write)' p2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp2865 (dp2866 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp2867 (dp2868 g18 g3 (g19 g5 (ltRp2869 (dp2870 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2871 (dp2872 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2873 (dp2874 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2875 (dp2876 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Read)' p2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp2878 (dp2879 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp2880 (dp2881 g18 g3 (g19 g5 (ltRp2882 (dp2883 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2884 (dp2885 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2886 (dp2887 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2888 (dp2889 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Bad Header)' p2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp2891 (dp2892 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp2893 (dp2894 g18 g3 (g19 g5 (ltRp2895 (dp2896 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2897 (dp2898 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2899 (dp2900 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2901 (dp2902 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx)' p2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp2904 (dp2905 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp2906 (dp2907 g18 g3 (g19 g5 (ltRp2908 (dp2909 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2910 (dp2911 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2912 (dp2913 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2914 (dp2915 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (400)' p2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp2917 (dp2918 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp2919 (dp2920 g18 g3 (g19 g5 (ltRp2921 (dp2922 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2923 (dp2924 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2925 (dp2926 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2927 (dp2928 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (401)' p2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp2930 (dp2931 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp2932 (dp2933 g18 g3 (g19 g5 (ltRp2934 (dp2935 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2936 (dp2937 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2938 (dp2939 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2940 (dp2941 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (403)' p2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp2943 (dp2944 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp2945 (dp2946 g18 g3 (g19 g5 (ltRp2947 (dp2948 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2949 (dp2950 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2951 (dp2952 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2953 (dp2954 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp2956 (dp2957 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp2958 (dp2959 g18 g3 (g19 g5 (ltRp2960 (dp2961 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2962 (dp2963 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2964 (dp2965 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2966 (dp2967 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (407)' p2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp2969 (dp2970 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp2971 (dp2972 g18 g3 (g19 g5 (ltRp2973 (dp2974 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2975 (dp2976 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2977 (dp2978 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2979 (dp2980 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (408)' p2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp2982 (dp2983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp2984 (dp2985 g18 g3 (g19 g5 (ltRp2986 (dp2987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2988 (dp2989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2990 (dp2991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2992 (dp2993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx other)' p2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp2995 (dp2996 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp2997 (dp2998 g18 g3 (g19 g5 (ltRp2999 (dp3000 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3001 (dp3002 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3003 (dp3004 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3005 (dp3006 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx)' p3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp3008 (dp3009 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp3010 (dp3011 g18 g3 (g19 g5 (ltRp3012 (dp3013 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3014 (dp3015 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3016 (dp3017 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3018 (dp3019 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (505)' p3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp3021 (dp3022 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp3023 (dp3024 g18 g3 (g19 g5 (ltRp3025 (dp3026 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3027 (dp3028 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3029 (dp3030 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3031 (dp3032 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx other)' p3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp3034 (dp3035 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp3036 (dp3037 g18 g3 (g19 g5 (ltRp3038 (dp3039 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3040 (dp3041 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3042 (dp3043 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3044 (dp3045 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (other)' p3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp3047 (dp3048 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp3049 (dp3050 g18 g3 (g19 g5 (ltRp3051 (dp3052 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3053 (dp3054 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3055 (dp3056 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3057 (dp3058 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Timeout)' p3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp3060 (dp3061 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp3062 (dp3063 g18 g3 (g19 g5 (ltRp3064 (dp3065 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3066 (dp3067 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3068 (dp3069 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3070 (dp3071 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp3073 (dp3074 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp3075 (dp3076 g18 g3 (g19 g5 (ltRp3077 (dp3078 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3079 (dp3080 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3081 (dp3082 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3083 (dp3084 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted Before Request' p3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp3086 (dp3087 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp3088 (dp3089 g18 g3 (g19 g5 (ltRp3090 (dp3091 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3092 (dp3093 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3094 (dp3095 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3096 (dp3097 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted After Request' p3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp3099 (dp3100 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp3101 (dp3102 g18 g3 (g19 g5 (ltRp3103 (dp3104 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3105 (dp3106 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3107 (dp3108 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3109 (dp3110 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received With Match' p3111 sg22 I00 sg37 g38 sg39 g3111 sbag3 (g7 g8 NtRp3112 (dp3113 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp3114 (dp3115 g18 g3 (g19 g5 (ltRp3116 (dp3117 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3118 (dp3119 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3120 (dp3121 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3122 (dp3123 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received Without Match' p3124 sg22 I00 sg37 g38 sg39 g3124 sbag3 (g7 g8 NtRp3125 (dp3126 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp3127 (dp3128 g18 g3 (g19 g5 (ltRp3129 (dp3130 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3131 (dp3132 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3133 (dp3134 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3135 (dp3136 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Intermediate Responses Received (1xx)' p3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3138 (dp3139 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp3140 (dp3141 g18 g3 (g19 g5 (ltRp3142 (dp3143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3144 (dp3145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3146 (dp3147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3148 (dp3149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (2xx)' p3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3151 (dp3152 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp3153 (dp3154 g18 g3 (g19 g5 (ltRp3155 (dp3156 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3157 (dp3158 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3159 (dp3160 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3161 (dp3162 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (3xx)' p3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3164 (dp3165 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp3166 (dp3167 g18 g3 (g19 g5 (ltRp3168 (dp3169 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3170 (dp3171 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3172 (dp3173 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3174 (dp3175 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (301)' p3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3177 (dp3178 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp3179 (dp3180 g18 g3 (g19 g5 (ltRp3181 (dp3182 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3183 (dp3184 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3185 (dp3186 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3187 (dp3188 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (302)' p3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp3190 (dp3191 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp3192 (dp3193 g18 g3 (g19 g5 (ltRp3194 (dp3195 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3196 (dp3197 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3198 (dp3199 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3200 (dp3201 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (303)' p3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp3203 (dp3204 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp3205 (dp3206 g18 g3 (g19 g5 (ltRp3207 (dp3208 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3209 (dp3210 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3211 (dp3212 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3213 (dp3214 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (307)' p3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp3216 (dp3217 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp3218 (dp3219 g18 g3 (g19 g5 (ltRp3220 (dp3221 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3222 (dp3223 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3224 (dp3225 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3226 (dp3227 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Sent' p3228 sg22 I00 sg37 g38 sg39 g3228 sbag3 (g7 g8 NtRp3229 (dp3230 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp3231 (dp3232 g18 g3 (g19 g5 (ltRp3233 (dp3234 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3235 (dp3236 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3237 (dp3238 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3239 (dp3240 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Headers Received' p3241 sg22 I00 sg37 g38 sg39 g3241 sbag3 (g7 g8 NtRp3242 (dp3243 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp3244 (dp3245 g18 g3 (g19 g5 (ltRp3246 (dp3247 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3248 (dp3249 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3250 (dp3251 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3252 (dp3253 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Received' p3254 sg22 I00 sg37 g38 sg39 g3254 sbag3 (g7 g8 NtRp3255 (dp3256 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp3257 (dp3258 g18 g3 (g19 g5 (ltRp3259 (dp3260 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3261 (dp3262 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3263 (dp3264 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3265 (dp3266 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Successful' p3267 sg22 I00 sg37 g38 sg39 g3267 sbag3 (g7 g8 NtRp3268 (dp3269 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp3270 (dp3271 g18 g3 (g19 g5 (ltRp3272 (dp3273 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3274 (dp3275 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3276 (dp3277 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3278 (dp3279 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Failed' p3280 sg22 I00 sg37 g38 sg39 g3280 sbag3 (g7 g8 NtRp3281 (dp3282 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp3283 (dp3284 g18 g3 (g19 g5 (ltRp3285 (dp3286 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3287 (dp3288 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3289 (dp3290 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3291 (dp3292 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p3293 sg22 I00 sg37 g38 sg39 g3293 sbag3 (g7 g8 NtRp3294 (dp3295 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp3296 (dp3297 g18 g3 (g19 g5 (ltRp3298 (dp3299 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3300 (dp3301 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3302 (dp3303 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3304 (dp3305 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p3306 sg22 I00 sg37 g261 sg39 g3306 sbag3 (g7 g8 NtRp3307 (dp3308 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp3309 (dp3310 g18 g3 (g19 g5 (ltRp3311 (dp3312 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3313 (dp3314 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3315 (dp3316 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3317 (dp3318 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p3319 sg22 I00 sg37 g261 sg39 g3319 sbag3 (g7 g8 NtRp3320 (dp3321 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp3322 (dp3323 g18 g3 (g19 g5 (ltRp3324 (dp3325 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3326 (dp3327 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3328 (dp3329 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3330 (dp3331 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Sent' p3332 sg22 I00 sg37 g38 sg39 g3332 sbag3 (g7 g8 NtRp3333 (dp3334 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp3335 (dp3336 g18 g3 (g19 g5 (ltRp3337 (dp3338 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3339 (dp3340 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3341 (dp3342 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3343 (dp3344 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p3345 sg22 I00 sg37 g38 sg39 g3345 sbag3 (g7 g8 NtRp3346 (dp3347 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp3348 (dp3349 g18 g3 (g19 g5 (ltRp3350 (dp3351 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3352 (dp3353 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3354 (dp3355 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3356 (dp3357 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size in Request' p3358 sg22 I00 sg37 g261 sg39 g3358 sbag3 (g7 g8 NtRp3359 (dp3360 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp3361 (dp3362 g18 g3 (g19 g5 (ltRp3363 (dp3364 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3365 (dp3366 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3367 (dp3368 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3369 (dp3370 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p3371 sg22 I00 sg37 g261 sg39 g3371 sbag3 (g7 g8 NtRp3372 (dp3373 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp3374 (dp3375 g18 g3 (g19 g5 (ltRp3376 (dp3377 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3378 (dp3379 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3380 (dp3381 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3382 (dp3383 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name1-Value1' p3384 sg22 I00 sg37 S'kString' p3385 sg39 g3384 sbag3 (g7 g8 NtRp3386 (dp3387 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp3388 (dp3389 g18 g3 (g19 g5 (ltRp3390 (dp3391 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3392 (dp3393 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3394 (dp3395 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3396 (dp3397 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter1' p3398 sg22 I00 sg37 g38 sg39 g3398 sbag3 (g7 g8 NtRp3399 (dp3400 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp3401 (dp3402 g18 g3 (g19 g5 (ltRp3403 (dp3404 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3405 (dp3406 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3407 (dp3408 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3409 (dp3410 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name2-Value2' p3411 sg22 I00 sg37 g3385 sg39 g3411 sbag3 (g7 g8 NtRp3412 (dp3413 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp3414 (dp3415 g18 g3 (g19 g5 (ltRp3416 (dp3417 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3418 (dp3419 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3420 (dp3421 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3422 (dp3423 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter2' p3424 sg22 I00 sg37 g38 sg39 g3424 sbag3 (g7 g8 NtRp3425 (dp3426 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp3427 (dp3428 g18 g3 (g19 g5 (ltRp3429 (dp3430 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3431 (dp3432 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3433 (dp3434 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3435 (dp3436 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name3-Value3' p3437 sg22 I00 sg37 g3385 sg39 g3437 sbag3 (g7 g8 NtRp3438 (dp3439 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp3440 (dp3441 g18 g3 (g19 g5 (ltRp3442 (dp3443 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3444 (dp3445 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3446 (dp3447 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3448 (dp3449 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter3' p3450 sg22 I00 sg37 g38 sg39 g3450 sbag3 (g7 g8 NtRp3451 (dp3452 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp3453 (dp3454 g18 g3 (g19 g5 (ltRp3455 (dp3456 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3457 (dp3458 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3459 (dp3460 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3461 (dp3462 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name4-Value4' p3463 sg22 I00 sg37 g3385 sg39 g3463 sbag3 (g7 g8 NtRp3464 (dp3465 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp3466 (dp3467 g18 g3 (g19 g5 (ltRp3468 (dp3469 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3470 (dp3471 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3472 (dp3473 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3474 (dp3475 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter4' p3476 sg22 I00 sg37 g38 sg39 g3476 sbag3 (g7 g8 NtRp3477 (dp3478 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp3479 (dp3480 g18 g3 (g19 g5 (ltRp3481 (dp3482 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3483 (dp3484 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3485 (dp3486 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3487 (dp3488 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name5-Value5' p3489 sg22 I00 sg37 g3385 sg39 g3489 sbag3 (g7 g8 NtRp3490 (dp3491 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp3492 (dp3493 g18 g3 (g19 g5 (ltRp3494 (dp3495 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3496 (dp3497 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3498 (dp3499 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3500 (dp3501 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter5' p3502 sg22 I00 sg37 g38 sg39 g3502 sbag3 (g7 g8 NtRp3503 (dp3504 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp3505 (dp3506 g18 g3 (g19 g5 (ltRp3507 (dp3508 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3509 (dp3510 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3511 (dp3512 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3513 (dp3514 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name6-Value6' p3515 sg22 I00 sg37 g3385 sg39 g3515 sbag3 (g7 g8 NtRp3516 (dp3517 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp3518 (dp3519 g18 g3 (g19 g5 (ltRp3520 (dp3521 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3522 (dp3523 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3524 (dp3525 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3526 (dp3527 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter6' p3528 sg22 I00 sg37 g38 sg39 g3528 sbag3 (g7 g8 NtRp3529 (dp3530 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp3531 (dp3532 g18 g3 (g19 g5 (ltRp3533 (dp3534 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3535 (dp3536 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3537 (dp3538 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3539 (dp3540 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name7-Value7' p3541 sg22 I00 sg37 g3385 sg39 g3541 sbag3 (g7 g8 NtRp3542 (dp3543 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp3544 (dp3545 g18 g3 (g19 g5 (ltRp3546 (dp3547 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3548 (dp3549 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3550 (dp3551 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3552 (dp3553 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter7' p3554 sg22 I00 sg37 g38 sg39 g3554 sbag3 (g7 g8 NtRp3555 (dp3556 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp3557 (dp3558 g18 g3 (g19 g5 (ltRp3559 (dp3560 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3561 (dp3562 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3563 (dp3564 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3565 (dp3566 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name8-Value8' p3567 sg22 I00 sg37 g3385 sg39 g3567 sbag3 (g7 g8 NtRp3568 (dp3569 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp3570 (dp3571 g18 g3 (g19 g5 (ltRp3572 (dp3573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3574 (dp3575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3576 (dp3577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3578 (dp3579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter8' p3580 sg22 I00 sg37 g38 sg39 g3580 sbag3 (g7 g8 NtRp3581 (dp3582 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp3583 (dp3584 g18 g3 (g19 g5 (ltRp3585 (dp3586 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3587 (dp3588 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3589 (dp3590 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3591 (dp3592 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name9-Value9' p3593 sg22 I00 sg37 g3385 sg39 g3593 sbag3 (g7 g8 NtRp3594 (dp3595 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp3596 (dp3597 g18 g3 (g19 g5 (ltRp3598 (dp3599 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3600 (dp3601 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3602 (dp3603 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3604 (dp3605 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter9' p3606 sg22 I00 sg37 g38 sg39 g3606 sbag3 (g7 g8 NtRp3607 (dp3608 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp3609 (dp3610 g18 g3 (g19 g5 (ltRp3611 (dp3612 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3613 (dp3614 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3615 (dp3616 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3617 (dp3618 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name10-Value10' p3619 sg22 I00 sg37 g3385 sg39 g3619 sbag3 (g7 g8 NtRp3620 (dp3621 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp3622 (dp3623 g18 g3 (g19 g5 (ltRp3624 (dp3625 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3626 (dp3627 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3628 (dp3629 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3630 (dp3631 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter10' p3632 sg22 I00 sg37 g38 sg39 g3632 sbag3 (g7 g8 NtRp3633 (dp3634 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp3635 (dp3636 g18 g3 (g19 g5 (ltRp3637 (dp3638 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3639 (dp3640 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3641 (dp3642 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3643 (dp3644 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Received' p3645 sg22 I00 sg37 g38 sg39 g3645 sbag3 (g7 g8 NtRp3646 (dp3647 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp3648 (dp3649 g18 g3 (g19 g5 (ltRp3650 (dp3651 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3652 (dp3653 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3654 (dp3655 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3656 (dp3657 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Successful' p3658 sg22 I00 sg37 g38 sg39 g3658 sbag3 (g7 g8 NtRp3659 (dp3660 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp3661 (dp3662 g18 g3 (g19 g5 (ltRp3663 (dp3664 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3665 (dp3666 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3667 (dp3668 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3669 (dp3670 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Failed' p3671 sg22 I00 sg37 g38 sg39 g3671 sbag3 (g7 g8 NtRp3672 (dp3673 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp3674 (dp3675 g18 g3 (g19 g5 (ltRp3676 (dp3677 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3678 (dp3679 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3680 (dp3681 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3682 (dp3683 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Received' p3684 sg22 I00 sg37 g38 sg39 g3684 sbag3 (g7 g8 NtRp3685 (dp3686 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp3687 (dp3688 g18 g3 (g19 g5 (ltRp3689 (dp3690 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3691 (dp3692 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3693 (dp3694 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3695 (dp3696 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Successful' p3697 sg22 I00 sg37 g38 sg39 g3697 sbag3 (g7 g8 NtRp3698 (dp3699 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp3700 (dp3701 g18 g3 (g19 g5 (ltRp3702 (dp3703 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3704 (dp3705 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3706 (dp3707 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3708 (dp3709 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Failed' p3710 sg22 I00 sg37 g38 sg39 g3710 sbag3 (g7 g8 NtRp3711 (dp3712 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp3713 (dp3714 g18 g3 (g19 g5 (ltRp3715 (dp3716 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3717 (dp3718 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3719 (dp3720 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3721 (dp3722 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Received' p3723 sg22 I00 sg37 g38 sg39 g3723 sbag3 (g7 g8 NtRp3724 (dp3725 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp3726 (dp3727 g18 g3 (g19 g5 (ltRp3728 (dp3729 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3730 (dp3731 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3732 (dp3733 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3734 (dp3735 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Successful' p3736 sg22 I00 sg37 g38 sg39 g3736 sbag3 (g7 g8 NtRp3737 (dp3738 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp3739 (dp3740 g18 g3 (g19 g5 (ltRp3741 (dp3742 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3743 (dp3744 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3745 (dp3746 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3747 (dp3748 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Failed' p3749 sg22 I00 sg37 g38 sg39 g3749 sbag3 (g7 g8 NtRp3750 (dp3751 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp3752 (dp3753 g18 g3 (g19 g5 (ltRp3754 (dp3755 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3756 (dp3757 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3758 (dp3759 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3760 (dp3761 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Received' p3762 sg22 I00 sg37 g38 sg39 g3762 sbag3 (g7 g8 NtRp3763 (dp3764 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp3765 (dp3766 g18 g3 (g19 g5 (ltRp3767 (dp3768 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3769 (dp3770 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3771 (dp3772 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3773 (dp3774 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Successful' p3775 sg22 I00 sg37 g38 sg39 g3775 sbag3 (g7 g8 NtRp3776 (dp3777 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp3778 (dp3779 g18 g3 (g19 g5 (ltRp3780 (dp3781 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3782 (dp3783 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3784 (dp3785 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3786 (dp3787 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Failed' p3788 sg22 I00 sg37 g38 sg39 g3788 sbag3 (g7 g8 NtRp3789 (dp3790 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp3791 (dp3792 g18 g3 (g19 g5 (ltRp3793 (dp3794 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3795 (dp3796 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3797 (dp3798 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3799 (dp3800 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Average Compression Ratio' p3801 sg22 I00 sg37 g261 sg39 g3801 sbatRp3802 (dp3803 g12 I76 sg22 I00 sg11 NsbsS'HTTP Client' p3804 g3 (g4 g5 (lp3805 g3 (g7 g8 NtRp3806 (dp3807 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp3808 (dp3809 g18 g3 (g19 g5 (ltRp3810 (dp3811 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3812 (dp3813 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3814 (dp3815 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3816 (dp3817 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Simulated Users' p3818 sg22 I00 sg37 g38 sg39 g3818 sbag3 (g7 g8 NtRp3819 (dp3820 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp3821 (dp3822 g18 g3 (g19 g5 (ltRp3823 (dp3824 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3825 (dp3826 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3827 (dp3828 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3829 (dp3830 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Concurrent Connections' p3831 sg22 I00 sg37 g38 sg39 g3831 sbag3 (g7 g8 NtRp3832 (dp3833 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp3834 (dp3835 g18 g3 (g19 g5 (ltRp3836 (dp3837 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3838 (dp3839 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3840 (dp3841 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3842 (dp3843 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connections' p3844 sg22 I00 sg37 g38 sg39 g3844 sbag3 (g7 g8 NtRp3845 (dp3846 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp3847 (dp3848 g18 g3 (g19 g5 (ltRp3849 (dp3850 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3851 (dp3852 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3853 (dp3854 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3855 (dp3856 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Attempts' p3857 sg22 I00 sg37 g38 sg39 g3857 sbag3 (g7 g8 NtRp3858 (dp3859 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp3860 (dp3861 g18 g3 (g19 g5 (ltRp3862 (dp3863 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3864 (dp3865 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3866 (dp3867 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3868 (dp3869 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Aborts' p3870 sg22 I00 sg37 g38 sg39 g3870 sbag3 (g7 g8 NtRp3871 (dp3872 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp3873 (dp3874 g18 g3 (g19 g5 (ltRp3875 (dp3876 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3877 (dp3878 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3879 (dp3880 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3881 (dp3882 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Aborts' p3883 sg22 I00 sg37 g38 sg39 g3883 sbag3 (g7 g8 NtRp3884 (dp3885 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp3886 (dp3887 g18 g3 (g19 g5 (ltRp3888 (dp3889 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3890 (dp3891 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3892 (dp3893 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3894 (dp3895 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions' p3896 sg22 I00 sg37 g38 sg39 g3896 sbag3 (g7 g8 NtRp3897 (dp3898 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp3899 (dp3900 g18 g3 (g19 g5 (ltRp3901 (dp3902 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3903 (dp3904 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3905 (dp3906 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3907 (dp3908 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes' p3909 sg22 I00 sg37 g38 sg39 g3909 sbag3 (g7 g8 NtRp3910 (dp3911 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp3912 (dp3913 g18 g3 (g19 g5 (ltRp3914 (dp3915 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3916 (dp3917 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3918 (dp3919 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3920 (dp3921 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp3922 (dp3923 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp3924 (dp3925 g18 g3 (g19 g5 (ltRp3926 (dp3927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3928 (dp3929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3930 (dp3931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3932 (dp3933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp3934 (dp3935 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp3936 (dp3937 g18 g3 (g19 g5 (ltRp3938 (dp3939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3940 (dp3941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3942 (dp3943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3944 (dp3945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp3946 (dp3947 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp3948 (dp3949 g18 g3 (g19 g5 (ltRp3950 (dp3951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3952 (dp3953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3954 (dp3955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3956 (dp3957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3958 (dp3959 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp3960 (dp3961 g18 g3 (g19 g5 (ltRp3962 (dp3963 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3964 (dp3965 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3966 (dp3967 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3968 (dp3969 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3970 (dp3971 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp3972 (dp3973 g18 g3 (g19 g5 (ltRp3974 (dp3975 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3976 (dp3977 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3978 (dp3979 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3980 (dp3981 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3982 (dp3983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp3984 (dp3985 g18 g3 (g19 g5 (ltRp3986 (dp3987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3988 (dp3989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3990 (dp3991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3992 (dp3993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3994 (dp3995 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp3996 (dp3997 g18 g3 (g19 g5 (ltRp3998 (dp3999 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4000 (dp4001 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4002 (dp4003 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4004 (dp4005 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp4006 (dp4007 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp4008 (dp4009 g18 g3 (g19 g5 (ltRp4010 (dp4011 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4012 (dp4013 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4014 (dp4015 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4016 (dp4017 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp4018 (dp4019 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp4020 (dp4021 g18 g3 (g19 g5 (ltRp4022 (dp4023 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4024 (dp4025 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4026 (dp4027 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4028 (dp4029 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp4030 (dp4031 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp4032 (dp4033 g18 g3 (g19 g5 (ltRp4034 (dp4035 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4036 (dp4037 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4038 (dp4039 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4040 (dp4041 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp4042 (dp4043 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp4044 (dp4045 g18 g3 (g19 g5 (ltRp4046 (dp4047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4048 (dp4049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4050 (dp4051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4052 (dp4053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp4054 (dp4055 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp4056 (dp4057 g18 g3 (g19 g5 (ltRp4058 (dp4059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4060 (dp4061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4062 (dp4063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4064 (dp4065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp4066 (dp4067 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp4068 (dp4069 g18 g3 (g19 g5 (ltRp4070 (dp4071 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4072 (dp4073 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4074 (dp4075 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4076 (dp4077 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp4078 (dp4079 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp4080 (dp4081 g18 g3 (g19 g5 (ltRp4082 (dp4083 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4084 (dp4085 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4086 (dp4087 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4088 (dp4089 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp4090 (dp4091 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp4092 (dp4093 g18 g3 (g19 g5 (ltRp4094 (dp4095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4096 (dp4097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4098 (dp4099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4100 (dp4101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp4102 (dp4103 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp4104 (dp4105 g18 g3 (g19 g5 (ltRp4106 (dp4107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4108 (dp4109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4110 (dp4111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4112 (dp4113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp4114 (dp4115 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp4116 (dp4117 g18 g3 (g19 g5 (ltRp4118 (dp4119 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4120 (dp4121 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4122 (dp4123 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4124 (dp4125 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp4126 (dp4127 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp4128 (dp4129 g18 g3 (g19 g5 (ltRp4130 (dp4131 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4132 (dp4133 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4134 (dp4135 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4136 (dp4137 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp4138 (dp4139 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp4140 (dp4141 g18 g3 (g19 g5 (ltRp4142 (dp4143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4144 (dp4145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4146 (dp4147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4148 (dp4149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp4150 (dp4151 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp4152 (dp4153 g18 g3 (g19 g5 (ltRp4154 (dp4155 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4156 (dp4157 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4158 (dp4159 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4160 (dp4161 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp4162 (dp4163 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp4164 (dp4165 g18 g3 (g19 g5 (ltRp4166 (dp4167 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4168 (dp4169 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4170 (dp4171 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4172 (dp4173 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp4174 (dp4175 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp4176 (dp4177 g18 g3 (g19 g5 (ltRp4178 (dp4179 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4180 (dp4181 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4182 (dp4183 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4184 (dp4185 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp4186 (dp4187 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp4188 (dp4189 g18 g3 (g19 g5 (ltRp4190 (dp4191 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4192 (dp4193 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4194 (dp4195 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4196 (dp4197 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp4198 (dp4199 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp4200 (dp4201 g18 g3 (g19 g5 (ltRp4202 (dp4203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4204 (dp4205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4206 (dp4207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4208 (dp4209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp4210 (dp4211 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp4212 (dp4213 g18 g3 (g19 g5 (ltRp4214 (dp4215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4216 (dp4217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4218 (dp4219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4220 (dp4221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp4222 (dp4223 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp4224 (dp4225 g18 g3 (g19 g5 (ltRp4226 (dp4227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4228 (dp4229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4230 (dp4231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4232 (dp4233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp4234 (dp4235 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp4236 (dp4237 g18 g3 (g19 g5 (ltRp4238 (dp4239 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4240 (dp4241 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4242 (dp4243 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4244 (dp4245 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp4246 (dp4247 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp4248 (dp4249 g18 g3 (g19 g5 (ltRp4250 (dp4251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4252 (dp4253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4254 (dp4255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4256 (dp4257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p4258 sg22 I00 sg37 g38 sg39 g4258 sbag3 (g7 g8 NtRp4259 (dp4260 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp4261 (dp4262 g18 g3 (g19 g5 (ltRp4263 (dp4264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4265 (dp4266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4267 (dp4268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4269 (dp4270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Request Precondition Failed (412)' p4271 sg22 I00 sg37 g38 sg39 g4271 sbag3 (g7 g8 NtRp4272 (dp4273 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp4274 (dp4275 g18 g3 (g19 g5 (ltRp4276 (dp4277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4278 (dp4279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4280 (dp4281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4282 (dp4283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p4284 sg22 I00 sg37 g38 sg39 g4284 sbag3 (g7 g8 NtRp4285 (dp4286 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp4287 (dp4288 g18 g3 (g19 g5 (ltRp4289 (dp4290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4291 (dp4292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4293 (dp4294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4295 (dp4296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp4297 (dp4298 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp4299 (dp4300 g18 g3 (g19 g5 (ltRp4301 (dp4302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4303 (dp4304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4305 (dp4306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4307 (dp4308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp4309 (dp4310 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp4311 (dp4312 g18 g3 (g19 g5 (ltRp4313 (dp4314 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4315 (dp4316 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4317 (dp4318 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4319 (dp4320 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions Active' p4321 sg22 I00 sg37 g38 sg39 g4321 sbag3 (g7 g8 NtRp4322 (dp4323 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp4324 (dp4325 g18 g3 (g19 g5 (ltRp4326 (dp4327 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4328 (dp4329 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4330 (dp4331 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4332 (dp4333 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Users Active' p4334 sg22 I00 sg37 g38 sg39 g4334 sbag3 (g7 g8 NtRp4335 (dp4336 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp4337 (dp4338 g18 g3 (g19 g5 (ltRp4339 (dp4340 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4341 (dp4342 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4343 (dp4344 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4345 (dp4346 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Received' p4347 sg22 I00 sg37 g38 sg39 g4347 sbag3 (g7 g8 NtRp4348 (dp4349 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp4350 (dp4351 g18 g3 (g19 g5 (ltRp4352 (dp4353 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4354 (dp4355 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4356 (dp4357 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4358 (dp4359 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Received' p4360 sg22 I00 sg37 g38 sg39 g4360 sbag3 (g7 g8 NtRp4361 (dp4362 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp4363 (dp4364 g18 g3 (g19 g5 (ltRp4365 (dp4366 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4367 (dp4368 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4369 (dp4370 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4371 (dp4372 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Received' p4373 sg22 I00 sg37 g38 sg39 g4373 sbag3 (g7 g8 NtRp4374 (dp4375 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp4376 (dp4377 g18 g3 (g19 g5 (ltRp4378 (dp4379 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4380 (dp4381 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4382 (dp4383 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4384 (dp4385 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Unrecognized Content-Encoding Received' p4386 sg22 I00 sg37 g38 sg39 g4386 sbag3 (g7 g8 NtRp4387 (dp4388 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp4389 (dp4390 g18 g3 (g19 g5 (ltRp4391 (dp4392 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4393 (dp4394 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4395 (dp4396 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4397 (dp4398 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Successful' p4399 sg22 I00 sg37 g38 sg39 g4399 sbag3 (g7 g8 NtRp4400 (dp4401 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp4402 (dp4403 g18 g3 (g19 g5 (ltRp4404 (dp4405 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4406 (dp4407 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4408 (dp4409 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4410 (dp4411 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Successful' p4412 sg22 I00 sg37 g38 sg39 g4412 sbag3 (g7 g8 NtRp4413 (dp4414 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp4415 (dp4416 g18 g3 (g19 g5 (ltRp4417 (dp4418 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4419 (dp4420 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4421 (dp4422 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4423 (dp4424 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Successful' p4425 sg22 I00 sg37 g38 sg39 g4425 sbag3 (g7 g8 NtRp4426 (dp4427 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp4428 (dp4429 g18 g3 (g19 g5 (ltRp4430 (dp4431 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4432 (dp4433 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4434 (dp4435 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4436 (dp4437 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Failed' p4438 sg22 I00 sg37 g38 sg39 g4438 sbag3 (g7 g8 NtRp4439 (dp4440 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp4441 (dp4442 g18 g3 (g19 g5 (ltRp4443 (dp4444 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4445 (dp4446 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4447 (dp4448 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4449 (dp4450 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed' p4451 sg22 I00 sg37 g38 sg39 g4451 sbag3 (g7 g8 NtRp4452 (dp4453 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp4454 (dp4455 g18 g3 (g19 g5 (ltRp4456 (dp4457 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4458 (dp4459 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4460 (dp4461 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4462 (dp4463 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed' p4464 sg22 I00 sg37 g38 sg39 g4464 sbag3 (g7 g8 NtRp4465 (dp4466 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp4467 (dp4468 g18 g3 (g19 g5 (ltRp4469 (dp4470 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4471 (dp4472 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4473 (dp4474 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4475 (dp4476 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Data Error' p4477 sg22 I00 sg37 g38 sg39 g4477 sbag3 (g7 g8 NtRp4478 (dp4479 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp4480 (dp4481 g18 g3 (g19 g5 (ltRp4482 (dp4483 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4484 (dp4485 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4486 (dp4487 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4488 (dp4489 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Decoding Error' p4490 sg22 I00 sg37 g38 sg39 g4490 sbag3 (g7 g8 NtRp4491 (dp4492 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp4493 (dp4494 g18 g3 (g19 g5 (ltRp4495 (dp4496 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4497 (dp4498 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4499 (dp4500 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4501 (dp4502 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Data Error' p4503 sg22 I00 sg37 g38 sg39 g4503 sbag3 (g7 g8 NtRp4504 (dp4505 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp4506 (dp4507 g18 g3 (g19 g5 (ltRp4508 (dp4509 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4510 (dp4511 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4512 (dp4513 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4514 (dp4515 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Decoding Error' p4516 sg22 I00 sg37 g38 sg39 g4516 sbag3 (g7 g8 NtRp4517 (dp4518 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp4519 (dp4520 g18 g3 (g19 g5 (ltRp4521 (dp4522 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4523 (dp4524 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4525 (dp4526 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4527 (dp4528 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Headers Received' p4529 sg22 I00 sg37 g38 sg39 g4529 sbag3 (g7 g8 NtRp4530 (dp4531 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp4532 (dp4533 g18 g3 (g19 g5 (ltRp4534 (dp4535 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4536 (dp4537 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4538 (dp4539 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4540 (dp4541 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Responses Received' p4542 sg22 I00 sg37 g38 sg39 g4542 sbag3 (g7 g8 NtRp4543 (dp4544 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp4545 (dp4546 g18 g3 (g19 g5 (ltRp4547 (dp4548 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4549 (dp4550 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4551 (dp4552 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4553 (dp4554 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Successful' p4555 sg22 I00 sg37 g38 sg39 g4555 sbag3 (g7 g8 NtRp4556 (dp4557 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp4558 (dp4559 g18 g3 (g19 g5 (ltRp4560 (dp4561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4562 (dp4563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4564 (dp4565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4566 (dp4567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Failed' p4568 sg22 I00 sg37 g38 sg39 g4568 sbag3 (g7 g8 NtRp4569 (dp4570 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp4571 (dp4572 g18 g3 (g19 g5 (ltRp4573 (dp4574 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4575 (dp4576 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4577 (dp4578 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4579 (dp4580 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Received' p4581 sg22 I00 sg37 g38 sg39 g4581 sbag3 (g7 g8 NtRp4582 (dp4583 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp4584 (dp4585 g18 g3 (g19 g5 (ltRp4586 (dp4587 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4588 (dp4589 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4590 (dp4591 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4592 (dp4593 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Headers Sent' p4594 sg22 I00 sg37 g38 sg39 g4594 sbag3 (g7 g8 NtRp4595 (dp4596 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp4597 (dp4598 g18 g3 (g19 g5 (ltRp4599 (dp4600 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4601 (dp4602 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4603 (dp4604 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4605 (dp4606 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Sent' p4607 sg22 I00 sg37 g38 sg39 g4607 sbag3 (g7 g8 NtRp4608 (dp4609 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp4610 (dp4611 g18 g3 (g19 g5 (ltRp4612 (dp4613 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4614 (dp4615 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4616 (dp4617 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4618 (dp4619 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Responses Received' p4620 sg22 I00 sg37 g38 sg39 g4620 sbag3 (g7 g8 NtRp4621 (dp4622 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp4623 (dp4624 g18 g3 (g19 g5 (ltRp4625 (dp4626 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4627 (dp4628 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4629 (dp4630 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4631 (dp4632 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Successful' p4633 sg22 I00 sg37 g38 sg39 g4633 sbag3 (g7 g8 NtRp4634 (dp4635 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp4636 (dp4637 g18 g3 (g19 g5 (ltRp4638 (dp4639 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4640 (dp4641 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4642 (dp4643 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4644 (dp4645 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Failed' p4646 sg22 I00 sg37 g38 sg39 g4646 sbag3 (g7 g8 NtRp4647 (dp4648 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp4649 (dp4650 g18 g3 (g19 g5 (ltRp4651 (dp4652 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4653 (dp4654 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4655 (dp4656 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4657 (dp4658 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Responses Received' p4659 sg22 I00 sg37 g38 sg39 g4659 sbag3 (g7 g8 NtRp4660 (dp4661 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp4662 (dp4663 g18 g3 (g19 g5 (ltRp4664 (dp4665 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4666 (dp4667 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4668 (dp4669 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4670 (dp4671 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Successful' p4672 sg22 I00 sg37 g38 sg39 g4672 sbag3 (g7 g8 NtRp4673 (dp4674 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp4675 (dp4676 g18 g3 (g19 g5 (ltRp4677 (dp4678 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4679 (dp4680 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4681 (dp4682 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4683 (dp4684 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Failed' p4685 sg22 I00 sg37 g38 sg39 g4685 sbag3 (g7 g8 NtRp4686 (dp4687 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp4688 (dp4689 g18 g3 (g19 g5 (ltRp4690 (dp4691 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4692 (dp4693 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4694 (dp4695 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4696 (dp4697 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p4698 sg22 I00 sg37 g38 sg39 g4698 sbag3 (g7 g8 NtRp4699 (dp4700 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp4701 (dp4702 g18 g3 (g19 g5 (ltRp4703 (dp4704 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4705 (dp4706 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4707 (dp4708 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4709 (dp4710 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p4711 sg22 I00 sg37 g38 sg39 g4711 sbag3 (g7 g8 NtRp4712 (dp4713 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp4714 (dp4715 g18 g3 (g19 g5 (ltRp4716 (dp4717 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4718 (dp4719 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4720 (dp4721 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4722 (dp4723 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p4724 sg22 I00 sg37 g38 sg39 g4724 sbag3 (g7 g8 NtRp4725 (dp4726 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp4727 (dp4728 g18 g3 (g19 g5 (ltRp4729 (dp4730 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4731 (dp4732 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4733 (dp4734 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4735 (dp4736 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p4737 sg22 I00 sg37 g38 sg39 g4737 sbag3 (g7 g8 NtRp4738 (dp4739 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp4740 (dp4741 g18 g3 (g19 g5 (ltRp4742 (dp4743 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4744 (dp4745 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4746 (dp4747 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4748 (dp4749 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Decompressed Content Bytes Received' p4750 sg22 I00 sg37 g38 sg39 g4750 sbag3 (g7 g8 NtRp4751 (dp4752 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp4753 (dp4754 g18 g3 (g19 g5 (ltRp4755 (dp4756 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4757 (dp4758 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4759 (dp4760 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4761 (dp4762 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p4763 sg22 I00 sg37 g38 sg39 g4763 sbag3 (g7 g8 NtRp4764 (dp4765 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp4766 (dp4767 g18 g3 (g19 g5 (ltRp4768 (dp4769 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4770 (dp4771 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4772 (dp4773 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4774 (dp4775 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p4776 sg22 I00 sg37 g38 sg39 g4776 sbag3 (g7 g8 NtRp4777 (dp4778 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp4779 (dp4780 g18 g3 (g19 g5 (ltRp4781 (dp4782 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4783 (dp4784 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4785 (dp4786 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4787 (dp4788 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected' p4789 sg22 I00 sg37 g38 sg39 g4789 sbag3 (g7 g8 NtRp4790 (dp4791 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp4792 (dp4793 g18 g3 (g19 g5 (ltRp4794 (dp4795 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4796 (dp4797 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4798 (dp4799 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4800 (dp4801 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Path Match Failed)' p4802 sg22 I00 sg37 g38 sg39 g4802 sbag3 (g7 g8 NtRp4803 (dp4804 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp4805 (dp4806 g18 g3 (g19 g5 (ltRp4807 (dp4808 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4809 (dp4810 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4811 (dp4812 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4813 (dp4814 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Domain Match Failed)' p4815 sg22 I00 sg37 g38 sg39 g4815 sbag3 (g7 g8 NtRp4816 (dp4817 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp4818 (dp4819 g18 g3 (g19 g5 (ltRp4820 (dp4821 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4822 (dp4823 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4824 (dp4825 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4826 (dp4827 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Cookiejar Overflow)' p4828 sg22 I00 sg37 g38 sg39 g4828 sbag3 (g7 g8 NtRp4829 (dp4830 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp4831 (dp4832 g18 g3 (g19 g5 (ltRp4833 (dp4834 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4835 (dp4836 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4837 (dp4838 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4839 (dp4840 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Probabilistic Reject)' p4841 sg22 I00 sg37 g38 sg39 g4841 sbag3 (g7 g8 NtRp4842 (dp4843 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp4844 (dp4845 g18 g3 (g19 g5 (ltRp4846 (dp4847 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4848 (dp4849 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4850 (dp4851 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4852 (dp4853 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookie headers Rejected - (Memory Overflow)' p4854 sg22 I00 sg37 g38 sg39 g4854 sbag3 (g7 g8 NtRp4855 (dp4856 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp4857 (dp4858 g18 g3 (g19 g5 (ltRp4859 (dp4860 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4861 (dp4862 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4863 (dp4864 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4865 (dp4866 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connect Time (us)' p4867 sg22 I00 sg37 g261 sg39 g4867 sbag3 (g7 g8 NtRp4868 (dp4869 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp4870 (dp4871 g18 g3 (g19 g5 (ltRp4872 (dp4873 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4874 (dp4875 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4876 (dp4877 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4878 (dp4879 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To First Byte (us)' p4880 sg22 I00 sg37 g261 sg39 g4880 sbag3 (g7 g8 NtRp4881 (dp4882 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp4883 (dp4884 g18 g3 (g19 g5 (ltRp4885 (dp4886 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4887 (dp4888 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4889 (dp4890 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4891 (dp4892 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To Last Byte (us)' p4893 sg22 I00 sg37 g261 sg39 g4893 sbag3 (g7 g8 NtRp4894 (dp4895 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp4896 (dp4897 g18 g3 (g19 g5 (ltRp4898 (dp4899 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4900 (dp4901 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4902 (dp4903 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4904 (dp4905 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Average (us)' p4906 sg22 I00 sg37 g261 sg39 g4906 sbag3 (g7 g8 NtRp4907 (dp4908 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp4909 (dp4910 g18 g3 (g19 g5 (ltRp4911 (dp4912 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4913 (dp4914 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4915 (dp4916 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4917 (dp4918 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Minimum (us)' p4919 sg22 I00 sg37 g38 sg39 g4919 sbag3 (g7 g8 NtRp4920 (dp4921 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp4922 (dp4923 g18 g3 (g19 g5 (ltRp4924 (dp4925 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4926 (dp4927 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4928 (dp4929 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4930 (dp4931 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Maximum (us)' p4932 sg22 I00 sg37 g38 sg39 g4932 sbag3 (g7 g8 NtRp4933 (dp4934 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp4935 (dp4936 g18 g3 (g19 g5 (ltRp4937 (dp4938 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4939 (dp4940 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4941 (dp4942 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4943 (dp4944 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Failed' p4945 sg22 I00 sg37 g38 sg39 g4945 sbag3 (g7 g8 NtRp4946 (dp4947 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp4948 (dp4949 g18 g3 (g19 g5 (ltRp4950 (dp4951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4952 (dp4953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4954 (dp4955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4956 (dp4957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Succeeded' p4958 sg22 I00 sg37 g38 sg39 g4958 sbag3 (g7 g8 NtRp4959 (dp4960 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp4961 (dp4962 g18 g3 (g19 g5 (ltRp4963 (dp4964 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4965 (dp4966 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4967 (dp4968 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4969 (dp4970 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Received' p4971 sg22 I00 sg37 g38 sg39 g4971 sbag3 (g7 g8 NtRp4972 (dp4973 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp4974 (dp4975 g18 g3 (g19 g5 (ltRp4976 (dp4977 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4978 (dp4979 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4980 (dp4981 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4982 (dp4983 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Received' p4984 sg22 I00 sg37 g38 sg39 g4984 sbag3 (g7 g8 NtRp4985 (dp4986 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp4987 (dp4988 g18 g3 (g19 g5 (ltRp4989 (dp4990 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4991 (dp4992 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4993 (dp4994 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4995 (dp4996 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Received' p4997 sg22 I00 sg37 g38 sg39 g4997 sbag3 (g7 g8 NtRp4998 (dp4999 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp5000 (dp5001 g18 g3 (g19 g5 (ltRp5002 (dp5003 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5004 (dp5005 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5006 (dp5007 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5008 (dp5009 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Received' p5010 sg22 I00 sg37 g38 sg39 g5010 sbag3 (g7 g8 NtRp5011 (dp5012 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp5013 (dp5014 g18 g3 (g19 g5 (ltRp5015 (dp5016 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5017 (dp5018 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5019 (dp5020 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5021 (dp5022 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Received' p5023 sg22 I00 sg37 g38 sg39 g5023 sbag3 (g7 g8 NtRp5024 (dp5025 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp5026 (dp5027 g18 g3 (g19 g5 (ltRp5028 (dp5029 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5030 (dp5031 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5032 (dp5033 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5034 (dp5035 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Received' p5036 sg22 I00 sg37 g38 sg39 g5036 sbag3 (g7 g8 NtRp5037 (dp5038 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp5039 (dp5040 g18 g3 (g19 g5 (ltRp5041 (dp5042 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5043 (dp5044 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5045 (dp5046 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5047 (dp5048 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Received' p5049 sg22 I00 sg37 g38 sg39 g5049 sbag3 (g7 g8 NtRp5050 (dp5051 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp5052 (dp5053 g18 g3 (g19 g5 (ltRp5054 (dp5055 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5056 (dp5057 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5058 (dp5059 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5060 (dp5061 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Received' p5062 sg22 I00 sg37 g38 sg39 g5062 sbag3 (g7 g8 NtRp5063 (dp5064 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp5065 (dp5066 g18 g3 (g19 g5 (ltRp5067 (dp5068 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5069 (dp5070 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5071 (dp5072 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5073 (dp5074 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Received' p5075 sg22 I00 sg37 g38 sg39 g5075 sbag3 (g7 g8 NtRp5076 (dp5077 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp5078 (dp5079 g18 g3 (g19 g5 (ltRp5080 (dp5081 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5082 (dp5083 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5084 (dp5085 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5086 (dp5087 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Received' p5088 sg22 I00 sg37 g38 sg39 g5088 sbag3 (g7 g8 NtRp5089 (dp5090 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp5091 (dp5092 g18 g3 (g19 g5 (ltRp5093 (dp5094 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5095 (dp5096 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5097 (dp5098 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5099 (dp5100 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Sent' p5101 sg22 I00 sg37 g38 sg39 g5101 sbag3 (g7 g8 NtRp5102 (dp5103 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp5104 (dp5105 g18 g3 (g19 g5 (ltRp5106 (dp5107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5108 (dp5109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5110 (dp5111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5112 (dp5113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Sent' p5114 sg22 I00 sg37 g38 sg39 g5114 sbag3 (g7 g8 NtRp5115 (dp5116 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp5117 (dp5118 g18 g3 (g19 g5 (ltRp5119 (dp5120 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5121 (dp5122 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5123 (dp5124 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5125 (dp5126 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Sent' p5127 sg22 I00 sg37 g38 sg39 g5127 sbag3 (g7 g8 NtRp5128 (dp5129 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp5130 (dp5131 g18 g3 (g19 g5 (ltRp5132 (dp5133 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5134 (dp5135 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5136 (dp5137 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5138 (dp5139 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Sent' p5140 sg22 I00 sg37 g38 sg39 g5140 sbag3 (g7 g8 NtRp5141 (dp5142 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp5143 (dp5144 g18 g3 (g19 g5 (ltRp5145 (dp5146 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5147 (dp5148 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5149 (dp5150 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5151 (dp5152 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Sent' p5153 sg22 I00 sg37 g38 sg39 g5153 sbag3 (g7 g8 NtRp5154 (dp5155 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp5156 (dp5157 g18 g3 (g19 g5 (ltRp5158 (dp5159 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5160 (dp5161 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5162 (dp5163 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5164 (dp5165 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Sent' p5166 sg22 I00 sg37 g38 sg39 g5166 sbag3 (g7 g8 NtRp5167 (dp5168 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp5169 (dp5170 g18 g3 (g19 g5 (ltRp5171 (dp5172 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5173 (dp5174 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5175 (dp5176 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5177 (dp5178 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Sent' p5179 sg22 I00 sg37 g38 sg39 g5179 sbag3 (g7 g8 NtRp5180 (dp5181 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp5182 (dp5183 g18 g3 (g19 g5 (ltRp5184 (dp5185 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5186 (dp5187 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5188 (dp5189 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5190 (dp5191 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Sent' p5192 sg22 I00 sg37 g38 sg39 g5192 sbag3 (g7 g8 NtRp5193 (dp5194 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp5195 (dp5196 g18 g3 (g19 g5 (ltRp5197 (dp5198 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5199 (dp5200 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5201 (dp5202 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5203 (dp5204 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Sent' p5205 sg22 I00 sg37 g38 sg39 g5205 sbag3 (g7 g8 NtRp5206 (dp5207 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp5208 (dp5209 g18 g3 (g19 g5 (ltRp5210 (dp5211 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5212 (dp5213 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5214 (dp5215 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5216 (dp5217 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Sent' p5218 sg22 I00 sg37 g38 sg39 g5218 sbag3 (g7 g8 NtRp5219 (dp5220 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp5221 (dp5222 g18 g3 (g19 g5 (ltRp5223 (dp5224 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5225 (dp5226 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5227 (dp5228 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5229 (dp5230 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Client' p5231 sg22 I00 sg37 g38 sg39 g5231 sbag3 (g7 g8 NtRp5232 (dp5233 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp5234 (dp5235 g18 g3 (g19 g5 (ltRp5236 (dp5237 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5238 (dp5239 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5240 (dp5241 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5242 (dp5243 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Server' p5244 sg22 I00 sg37 g38 sg39 g5244 sbag3 (g7 g8 NtRp5245 (dp5246 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp5247 (dp5248 g18 g3 (g19 g5 (ltRp5249 (dp5250 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5251 (dp5252 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5253 (dp5254 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5255 (dp5256 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Client to Server)' p5257 sg22 I00 sg37 g38 sg39 g5257 sbag3 (g7 g8 NtRp5258 (dp5259 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp5260 (dp5261 g18 g3 (g19 g5 (ltRp5262 (dp5263 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5264 (dp5265 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5266 (dp5267 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5268 (dp5269 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Server to Client)' p5270 sg22 I00 sg37 g38 sg39 g5270 sbag3 (g7 g8 NtRp5271 (dp5272 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp5273 (dp5274 g18 g3 (g19 g5 (ltRp5275 (dp5276 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5277 (dp5278 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5279 (dp5280 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5281 (dp5282 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Client to Server)' p5283 sg22 I00 sg37 g38 sg39 g5283 sbag3 (g7 g8 NtRp5284 (dp5285 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp5286 (dp5287 g18 g3 (g19 g5 (ltRp5288 (dp5289 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5290 (dp5291 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5292 (dp5293 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5294 (dp5295 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Server to Client)' p5296 sg22 I00 sg37 g38 sg39 g5296 sbag3 (g7 g8 NtRp5297 (dp5298 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp5299 (dp5300 g18 g3 (g19 g5 (ltRp5301 (dp5302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5303 (dp5304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5305 (dp5306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5307 (dp5308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Succeeded' p5309 sg22 I00 sg37 g38 sg39 g5309 sbag3 (g7 g8 NtRp5310 (dp5311 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp5312 (dp5313 g18 g3 (g19 g5 (ltRp5314 (dp5315 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5316 (dp5317 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5318 (dp5319 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5320 (dp5321 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Failed' p5322 sg22 I00 sg37 g38 sg39 g5322 sbag3 (g7 g8 NtRp5323 (dp5324 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp5325 (dp5326 g18 g3 (g19 g5 (ltRp5327 (dp5328 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5329 (dp5330 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5331 (dp5332 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5333 (dp5334 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Protocol Error' p5335 sg22 I00 sg37 g38 sg39 g5335 sbag3 (g7 g8 NtRp5336 (dp5337 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp5338 (dp5339 g18 g3 (g19 g5 (ltRp5340 (dp5341 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5342 (dp5343 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5344 (dp5345 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5346 (dp5347 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Internal Error' p5348 sg22 I00 sg37 g38 sg39 g5348 sbag3 (g7 g8 NtRp5349 (dp5350 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp5351 (dp5352 g18 g3 (g19 g5 (ltRp5353 (dp5354 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5355 (dp5356 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5357 (dp5358 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5359 (dp5360 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Flow Control Error' p5361 sg22 I00 sg37 g38 sg39 g5361 sbag3 (g7 g8 NtRp5362 (dp5363 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp5364 (dp5365 g18 g3 (g19 g5 (ltRp5366 (dp5367 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5368 (dp5369 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5370 (dp5371 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5372 (dp5373 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Timeout Error' p5374 sg22 I00 sg37 g38 sg39 g5374 sbag3 (g7 g8 NtRp5375 (dp5376 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp5377 (dp5378 g18 g3 (g19 g5 (ltRp5379 (dp5380 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5381 (dp5382 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5383 (dp5384 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5385 (dp5386 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Closed Error' p5387 sg22 I00 sg37 g38 sg39 g5387 sbag3 (g7 g8 NtRp5388 (dp5389 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp5390 (dp5391 g18 g3 (g19 g5 (ltRp5392 (dp5393 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5394 (dp5395 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5396 (dp5397 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5398 (dp5399 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Frame Size Error' p5400 sg22 I00 sg37 g38 sg39 g5400 sbag3 (g7 g8 NtRp5401 (dp5402 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp5403 (dp5404 g18 g3 (g19 g5 (ltRp5405 (dp5406 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5407 (dp5408 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5409 (dp5410 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5411 (dp5412 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Refused Stream Error' p5413 sg22 I00 sg37 g38 sg39 g5413 sbag3 (g7 g8 NtRp5414 (dp5415 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp5416 (dp5417 g18 g3 (g19 g5 (ltRp5418 (dp5419 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5420 (dp5421 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5422 (dp5423 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5424 (dp5425 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Cancelled Error' p5426 sg22 I00 sg37 g38 sg39 g5426 sbag3 (g7 g8 NtRp5427 (dp5428 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp5429 (dp5430 g18 g3 (g19 g5 (ltRp5431 (dp5432 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5433 (dp5434 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5435 (dp5436 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5437 (dp5438 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Compression Error' p5439 sg22 I00 sg37 g38 sg39 g5439 sbag3 (g7 g8 NtRp5440 (dp5441 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp5442 (dp5443 g18 g3 (g19 g5 (ltRp5444 (dp5445 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5446 (dp5447 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5448 (dp5449 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5450 (dp5451 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connect Error' p5452 sg22 I00 sg37 g38 sg39 g5452 sbag3 (g7 g8 NtRp5453 (dp5454 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp5455 (dp5456 g18 g3 (g19 g5 (ltRp5457 (dp5458 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5459 (dp5460 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5461 (dp5462 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5463 (dp5464 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Enhance Calm Error' p5465 sg22 I00 sg37 g38 sg39 g5465 sbag3 (g7 g8 NtRp5466 (dp5467 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp5468 (dp5469 g18 g3 (g19 g5 (ltRp5470 (dp5471 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5472 (dp5473 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5474 (dp5475 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5476 (dp5477 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Inadequate Security Error' p5478 sg22 I00 sg37 g38 sg39 g5478 sbag3 (g7 g8 NtRp5479 (dp5480 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp5481 (dp5482 g18 g3 (g19 g5 (ltRp5483 (dp5484 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5485 (dp5486 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5487 (dp5488 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5489 (dp5490 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 HTTP1_1 Required Error' p5491 sg22 I00 sg37 g38 sg39 g5491 sbag3 (g7 g8 NtRp5492 (dp5493 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp5494 (dp5495 g18 g3 (g19 g5 (ltRp5496 (dp5497 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5498 (dp5499 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5500 (dp5501 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5502 (dp5503 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p5504 sg22 I00 sg37 g38 sg39 g5504 sbag3 (g7 g8 NtRp5505 (dp5506 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp5507 (dp5508 g18 g3 (g19 g5 (ltRp5509 (dp5510 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5511 (dp5512 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5513 (dp5514 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5515 (dp5516 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p5517 sg22 I00 sg37 g38 sg39 g5517 sbag3 (g7 g8 NtRp5518 (dp5519 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp5520 (dp5521 g18 g3 (g19 g5 (ltRp5522 (dp5523 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5524 (dp5525 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5526 (dp5527 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5528 (dp5529 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p5530 sg22 I00 sg37 g38 sg39 g5530 sbag3 (g7 g8 NtRp5531 (dp5532 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp5533 (dp5534 g18 g3 (g19 g5 (ltRp5535 (dp5536 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5537 (dp5538 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5539 (dp5540 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5541 (dp5542 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p5543 sg22 I00 sg37 g38 sg39 g5543 sbag3 (g7 g8 NtRp5544 (dp5545 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp5546 (dp5547 g18 g3 (g19 g5 (ltRp5548 (dp5549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5550 (dp5551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5552 (dp5553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5554 (dp5555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p5556 sg22 I00 sg37 g38 sg39 g5556 sbag3 (g7 g8 NtRp5557 (dp5558 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp5559 (dp5560 g18 g3 (g19 g5 (ltRp5561 (dp5562 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5563 (dp5564 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5565 (dp5566 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5567 (dp5568 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p5569 sg22 I00 sg37 g38 sg39 g5569 sbag3 (g7 g8 NtRp5570 (dp5571 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp5572 (dp5573 g18 g3 (g19 g5 (ltRp5574 (dp5575 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5576 (dp5577 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5578 (dp5579 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5580 (dp5581 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p5582 sg22 I00 sg37 g38 sg39 g5582 sbag3 (g7 g8 NtRp5583 (dp5584 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp5585 (dp5586 g18 g3 (g19 g5 (ltRp5587 (dp5588 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5589 (dp5590 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5591 (dp5592 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5593 (dp5594 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p5595 sg22 I00 sg37 g38 sg39 g5595 sbag3 (g7 g8 NtRp5596 (dp5597 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp5598 (dp5599 g18 g3 (g19 g5 (ltRp5600 (dp5601 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5602 (dp5603 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5604 (dp5605 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5606 (dp5607 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p5608 sg22 I00 sg37 g38 sg39 g5608 sbag3 (g7 g8 NtRp5609 (dp5610 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp5611 (dp5612 g18 g3 (g19 g5 (ltRp5613 (dp5614 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5615 (dp5616 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5617 (dp5618 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5619 (dp5620 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p5621 sg22 I00 sg37 g38 sg39 g5621 sbag3 (g7 g8 NtRp5622 (dp5623 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp5624 (dp5625 g18 g3 (g19 g5 (ltRp5626 (dp5627 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5628 (dp5629 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5630 (dp5631 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5632 (dp5633 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p5634 sg22 I00 sg37 g38 sg39 g5634 sbag3 (g7 g8 NtRp5635 (dp5636 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp5637 (dp5638 g18 g3 (g19 g5 (ltRp5639 (dp5640 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5641 (dp5642 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5643 (dp5644 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5645 (dp5646 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p5647 sg22 I00 sg37 g38 sg39 g5647 sbag3 (g7 g8 NtRp5648 (dp5649 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp5650 (dp5651 g18 g3 (g19 g5 (ltRp5652 (dp5653 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5654 (dp5655 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5656 (dp5657 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5658 (dp5659 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p5660 sg22 I00 sg37 g38 sg39 g5660 sbag3 (g7 g8 NtRp5661 (dp5662 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp5663 (dp5664 g18 g3 (g19 g5 (ltRp5665 (dp5666 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5667 (dp5668 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5669 (dp5670 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5671 (dp5672 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p5673 sg22 I00 sg37 g38 sg39 g5673 sbag3 (g7 g8 NtRp5674 (dp5675 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp5676 (dp5677 g18 g3 (g19 g5 (ltRp5678 (dp5679 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5680 (dp5681 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5682 (dp5683 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5684 (dp5685 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p5686 sg22 I00 sg37 g38 sg39 g5686 sbag3 (g7 g8 NtRp5687 (dp5688 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp5689 (dp5690 g18 g3 (g19 g5 (ltRp5691 (dp5692 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5693 (dp5694 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5695 (dp5696 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5697 (dp5698 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p5699 sg22 I00 sg37 g38 sg39 g5699 sbag3 (g7 g8 NtRp5700 (dp5701 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp5702 (dp5703 g18 g3 (g19 g5 (ltRp5704 (dp5705 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5706 (dp5707 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5708 (dp5709 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5710 (dp5711 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p5712 sg22 I00 sg37 g38 sg39 g5712 sbag3 (g7 g8 NtRp5713 (dp5714 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp5715 (dp5716 g18 g3 (g19 g5 (ltRp5717 (dp5718 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5719 (dp5720 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5721 (dp5722 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5723 (dp5724 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p5725 sg22 I00 sg37 g38 sg39 g5725 sbag3 (g7 g8 NtRp5726 (dp5727 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp5728 (dp5729 g18 g3 (g19 g5 (ltRp5730 (dp5731 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5732 (dp5733 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5734 (dp5735 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5736 (dp5737 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p5738 sg22 I00 sg37 g38 sg39 g5738 sbag3 (g7 g8 NtRp5739 (dp5740 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp5741 (dp5742 g18 g3 (g19 g5 (ltRp5743 (dp5744 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5745 (dp5746 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5747 (dp5748 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5749 (dp5750 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p5751 sg22 I00 sg37 g38 sg39 g5751 sbag3 (g7 g8 NtRp5752 (dp5753 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp5754 (dp5755 g18 g3 (g19 g5 (ltRp5756 (dp5757 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5758 (dp5759 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5760 (dp5761 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5762 (dp5763 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p5764 sg22 I00 sg37 g38 sg39 g5764 sbag3 (g7 g8 NtRp5765 (dp5766 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp5767 (dp5768 g18 g3 (g19 g5 (ltRp5769 (dp5770 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5771 (dp5772 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5773 (dp5774 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5775 (dp5776 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p5777 sg22 I00 sg37 g38 sg39 g5777 sbag3 (g7 g8 NtRp5778 (dp5779 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp5780 (dp5781 g18 g3 (g19 g5 (ltRp5782 (dp5783 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5784 (dp5785 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5786 (dp5787 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5788 (dp5789 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p5790 sg22 I00 sg37 g38 sg39 g5790 sbag3 (g7 g8 NtRp5791 (dp5792 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp5793 (dp5794 g18 g3 (g19 g5 (ltRp5795 (dp5796 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5797 (dp5798 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5799 (dp5800 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5801 (dp5802 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p5803 sg22 I00 sg37 g38 sg39 g5803 sbag3 (g7 g8 NtRp5804 (dp5805 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp5806 (dp5807 g18 g3 (g19 g5 (ltRp5808 (dp5809 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5810 (dp5811 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5812 (dp5813 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5814 (dp5815 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p5816 sg22 I00 sg37 g38 sg39 g5816 sbag3 (g7 g8 NtRp5817 (dp5818 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp5819 (dp5820 g18 g3 (g19 g5 (ltRp5821 (dp5822 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5823 (dp5824 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5825 (dp5826 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5827 (dp5828 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p5829 sg22 I00 sg37 g38 sg39 g5829 sbag3 (g7 g8 NtRp5830 (dp5831 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp5832 (dp5833 g18 g3 (g19 g5 (ltRp5834 (dp5835 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5836 (dp5837 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5838 (dp5839 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5840 (dp5841 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p5842 sg22 I00 sg37 g38 sg39 g5842 sbag3 (g7 g8 NtRp5843 (dp5844 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp5845 (dp5846 g18 g3 (g19 g5 (ltRp5847 (dp5848 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5849 (dp5850 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5851 (dp5852 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5853 (dp5854 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p5855 sg22 I00 sg37 g38 sg39 g5855 sbag3 (g7 g8 NtRp5856 (dp5857 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp5858 (dp5859 g18 g3 (g19 g5 (ltRp5860 (dp5861 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5862 (dp5863 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5864 (dp5865 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5866 (dp5867 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p5868 sg22 I00 sg37 g38 sg39 g5868 sbag3 (g7 g8 NtRp5869 (dp5870 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp5871 (dp5872 g18 g3 (g19 g5 (ltRp5873 (dp5874 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5875 (dp5876 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5877 (dp5878 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5879 (dp5880 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p5881 sg22 I00 sg37 g38 sg39 g5881 sbag3 (g7 g8 NtRp5882 (dp5883 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp5884 (dp5885 g18 g3 (g19 g5 (ltRp5886 (dp5887 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5888 (dp5889 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5890 (dp5891 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5892 (dp5893 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p5894 sg22 I00 sg37 g38 sg39 g5894 sbag3 (g7 g8 NtRp5895 (dp5896 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp5897 (dp5898 g18 g3 (g19 g5 (ltRp5899 (dp5900 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5901 (dp5902 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5903 (dp5904 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5905 (dp5906 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p5907 sg22 I00 sg37 g38 sg39 g5907 sbag3 (g7 g8 NtRp5908 (dp5909 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp5910 (dp5911 g18 g3 (g19 g5 (ltRp5912 (dp5913 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5914 (dp5915 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5916 (dp5917 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5918 (dp5919 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p5920 sg22 I00 sg37 g38 sg39 g5920 sbag3 (g7 g8 NtRp5921 (dp5922 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp5923 (dp5924 g18 g3 (g19 g5 (ltRp5925 (dp5926 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5927 (dp5928 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5929 (dp5930 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5931 (dp5932 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p5933 sg22 I00 sg37 g38 sg39 g5933 sbag3 (g7 g8 NtRp5934 (dp5935 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp5936 (dp5937 g18 g3 (g19 g5 (ltRp5938 (dp5939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5940 (dp5941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5942 (dp5943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5944 (dp5945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p5946 sg22 I00 sg37 g38 sg39 g5946 sbag3 (g7 g8 NtRp5947 (dp5948 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp5949 (dp5950 g18 g3 (g19 g5 (ltRp5951 (dp5952 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5953 (dp5954 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5955 (dp5956 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5957 (dp5958 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p5959 sg22 I00 sg37 g38 sg39 g5959 sbag3 (g7 g8 NtRp5960 (dp5961 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp5962 (dp5963 g18 g3 (g19 g5 (ltRp5964 (dp5965 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5966 (dp5967 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5968 (dp5969 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5970 (dp5971 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p5972 sg22 I00 sg37 g38 sg39 g5972 sbag3 (g7 g8 NtRp5973 (dp5974 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp5975 (dp5976 g18 g3 (g19 g5 (ltRp5977 (dp5978 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5979 (dp5980 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5981 (dp5982 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5983 (dp5984 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p5985 sg22 I00 sg37 g38 sg39 g5985 sbag3 (g7 g8 NtRp5986 (dp5987 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp5988 (dp5989 g18 g3 (g19 g5 (ltRp5990 (dp5991 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5992 (dp5993 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5994 (dp5995 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5996 (dp5997 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p5998 sg22 I00 sg37 g38 sg39 g5998 sbag3 (g7 g8 NtRp5999 (dp6000 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp6001 (dp6002 g18 g3 (g19 g5 (ltRp6003 (dp6004 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6005 (dp6006 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6007 (dp6008 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6009 (dp6010 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p6011 sg22 I00 sg37 g38 sg39 g6011 sbag3 (g7 g8 NtRp6012 (dp6013 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp6014 (dp6015 g18 g3 (g19 g5 (ltRp6016 (dp6017 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6018 (dp6019 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6020 (dp6021 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6022 (dp6023 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p6024 sg22 I00 sg37 g38 sg39 g6024 sbag3 (g7 g8 NtRp6025 (dp6026 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp6027 (dp6028 g18 g3 (g19 g5 (ltRp6029 (dp6030 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6031 (dp6032 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6033 (dp6034 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6035 (dp6036 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p6037 sg22 I00 sg37 g38 sg39 g6037 sbag3 (g7 g8 NtRp6038 (dp6039 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp6040 (dp6041 g18 g3 (g19 g5 (ltRp6042 (dp6043 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6044 (dp6045 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6046 (dp6047 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6048 (dp6049 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p6050 sg22 I00 sg37 g38 sg39 g6050 sbag3 (g7 g8 NtRp6051 (dp6052 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp6053 (dp6054 g18 g3 (g19 g5 (ltRp6055 (dp6056 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6057 (dp6058 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6059 (dp6060 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6061 (dp6062 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p6063 sg22 I00 sg37 g38 sg39 g6063 sbag3 (g7 g8 NtRp6064 (dp6065 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp6066 (dp6067 g18 g3 (g19 g5 (ltRp6068 (dp6069 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6070 (dp6071 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6072 (dp6073 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6074 (dp6075 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p6076 sg22 I00 sg37 g38 sg39 g6076 sbag3 (g7 g8 NtRp6077 (dp6078 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp6079 (dp6080 g18 g3 (g19 g5 (ltRp6081 (dp6082 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6083 (dp6084 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6085 (dp6086 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6087 (dp6088 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p6089 sg22 I00 sg37 g38 sg39 g6089 sbag3 (g7 g8 NtRp6090 (dp6091 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp6092 (dp6093 g18 g3 (g19 g5 (ltRp6094 (dp6095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6096 (dp6097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6098 (dp6099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6100 (dp6101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p6102 sg22 I00 sg37 g38 sg39 g6102 sbag3 (g7 g8 NtRp6103 (dp6104 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp6105 (dp6106 g18 g3 (g19 g5 (ltRp6107 (dp6108 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6109 (dp6110 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6111 (dp6112 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6113 (dp6114 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p6115 sg22 I00 sg37 g38 sg39 g6115 sbag3 (g7 g8 NtRp6116 (dp6117 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp6118 (dp6119 g18 g3 (g19 g5 (ltRp6120 (dp6121 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6122 (dp6123 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6124 (dp6125 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6126 (dp6127 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p6128 sg22 I00 sg37 g38 sg39 g6128 sbag3 (g7 g8 NtRp6129 (dp6130 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp6131 (dp6132 g18 g3 (g19 g5 (ltRp6133 (dp6134 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6135 (dp6136 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6137 (dp6138 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6139 (dp6140 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p6141 sg22 I00 sg37 g38 sg39 g6141 sbag3 (g7 g8 NtRp6142 (dp6143 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp6144 (dp6145 g18 g3 (g19 g5 (ltRp6146 (dp6147 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6148 (dp6149 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6150 (dp6151 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6152 (dp6153 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p6154 sg22 I00 sg37 g38 sg39 g6154 sbag3 (g7 g8 NtRp6155 (dp6156 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp6157 (dp6158 g18 g3 (g19 g5 (ltRp6159 (dp6160 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6161 (dp6162 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6163 (dp6164 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6165 (dp6166 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p6167 sg22 I00 sg37 g38 sg39 g6167 sbag3 (g7 g8 NtRp6168 (dp6169 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp6170 (dp6171 g18 g3 (g19 g5 (ltRp6172 (dp6173 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6174 (dp6175 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6176 (dp6177 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6178 (dp6179 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p6180 sg22 I00 sg37 g38 sg39 g6180 sbag3 (g7 g8 NtRp6181 (dp6182 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp6183 (dp6184 g18 g3 (g19 g5 (ltRp6185 (dp6186 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6187 (dp6188 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6189 (dp6190 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6191 (dp6192 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p6193 sg22 I00 sg37 g38 sg39 g6193 sbag3 (g7 g8 NtRp6194 (dp6195 g11 Nsg12 I186 sg13 I01 sg14 g3 (g15 g8 NtRp6196 (dp6197 g18 g3 (g19 g5 (ltRp6198 (dp6199 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6200 (dp6201 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6202 (dp6203 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6204 (dp6205 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p6206 sg22 I00 sg37 g38 sg39 g6206 sbag3 (g7 g8 NtRp6207 (dp6208 g11 Nsg12 I187 sg13 I01 sg14 g3 (g15 g8 NtRp6209 (dp6210 g18 g3 (g19 g5 (ltRp6211 (dp6212 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6213 (dp6214 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6215 (dp6216 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6217 (dp6218 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p6219 sg22 I00 sg37 g38 sg39 g6219 sbag3 (g7 g8 NtRp6220 (dp6221 g11 Nsg12 I188 sg13 I01 sg14 g3 (g15 g8 NtRp6222 (dp6223 g18 g3 (g19 g5 (ltRp6224 (dp6225 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6226 (dp6227 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6228 (dp6229 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6230 (dp6231 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p6232 sg22 I00 sg37 g38 sg39 g6232 sbag3 (g7 g8 NtRp6233 (dp6234 g11 Nsg12 I189 sg13 I01 sg14 g3 (g15 g8 NtRp6235 (dp6236 g18 g3 (g19 g5 (ltRp6237 (dp6238 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6239 (dp6240 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6241 (dp6242 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6243 (dp6244 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p6245 sg22 I00 sg37 g38 sg39 g6245 sbag3 (g7 g8 NtRp6246 (dp6247 g11 Nsg12 I190 sg13 I01 sg14 g3 (g15 g8 NtRp6248 (dp6249 g18 g3 (g19 g5 (ltRp6250 (dp6251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6252 (dp6253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6254 (dp6255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6256 (dp6257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p6258 sg22 I00 sg37 g38 sg39 g6258 sbag3 (g7 g8 NtRp6259 (dp6260 g11 Nsg12 I191 sg13 I01 sg14 g3 (g15 g8 NtRp6261 (dp6262 g18 g3 (g19 g5 (ltRp6263 (dp6264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6265 (dp6266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6267 (dp6268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6269 (dp6270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p6271 sg22 I00 sg37 g38 sg39 g6271 sbag3 (g7 g8 NtRp6272 (dp6273 g11 Nsg12 I192 sg13 I01 sg14 g3 (g15 g8 NtRp6274 (dp6275 g18 g3 (g19 g5 (ltRp6276 (dp6277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6278 (dp6279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6280 (dp6281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6282 (dp6283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p6284 sg22 I00 sg37 g38 sg39 g6284 sbag3 (g7 g8 NtRp6285 (dp6286 g11 Nsg12 I193 sg13 I01 sg14 g3 (g15 g8 NtRp6287 (dp6288 g18 g3 (g19 g5 (ltRp6289 (dp6290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6291 (dp6292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6293 (dp6294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6295 (dp6296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p6297 sg22 I00 sg37 g38 sg39 g6297 sbag3 (g7 g8 NtRp6298 (dp6299 g11 Nsg12 I194 sg13 I01 sg14 g3 (g15 g8 NtRp6300 (dp6301 g18 g3 (g19 g5 (ltRp6302 (dp6303 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6304 (dp6305 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6306 (dp6307 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6308 (dp6309 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p6310 sg22 I00 sg37 g38 sg39 g6310 sbag3 (g7 g8 NtRp6311 (dp6312 g11 Nsg12 I195 sg13 I01 sg14 g3 (g15 g8 NtRp6313 (dp6314 g18 g3 (g19 g5 (ltRp6315 (dp6316 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6317 (dp6318 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6319 (dp6320 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6321 (dp6322 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p6323 sg22 I00 sg37 g38 sg39 g6323 sbag3 (g7 g8 NtRp6324 (dp6325 g11 Nsg12 I196 sg13 I01 sg14 g3 (g15 g8 NtRp6326 (dp6327 g18 g3 (g19 g5 (ltRp6328 (dp6329 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6330 (dp6331 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6332 (dp6333 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6334 (dp6335 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p6336 sg22 I00 sg37 g38 sg39 g6336 sbag3 (g7 g8 NtRp6337 (dp6338 g11 Nsg12 I197 sg13 I01 sg14 g3 (g15 g8 NtRp6339 (dp6340 g18 g3 (g19 g5 (ltRp6341 (dp6342 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6343 (dp6344 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6345 (dp6346 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6347 (dp6348 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p6349 sg22 I00 sg37 g38 sg39 g6349 sbag3 (g7 g8 NtRp6350 (dp6351 g11 Nsg12 I198 sg13 I01 sg14 g3 (g15 g8 NtRp6352 (dp6353 g18 g3 (g19 g5 (ltRp6354 (dp6355 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6356 (dp6357 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6358 (dp6359 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6360 (dp6361 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p6362 sg22 I00 sg37 g38 sg39 g6362 sbag3 (g7 g8 NtRp6363 (dp6364 g11 Nsg12 I199 sg13 I01 sg14 g3 (g15 g8 NtRp6365 (dp6366 g18 g3 (g19 g5 (ltRp6367 (dp6368 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6369 (dp6370 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6371 (dp6372 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6373 (dp6374 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p6375 sg22 I00 sg37 g38 sg39 g6375 sbag3 (g7 g8 NtRp6376 (dp6377 g11 Nsg12 I200 sg13 I01 sg14 g3 (g15 g8 NtRp6378 (dp6379 g18 g3 (g19 g5 (ltRp6380 (dp6381 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6382 (dp6383 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6384 (dp6385 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6386 (dp6387 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p6388 sg22 I00 sg37 g38 sg39 g6388 sbag3 (g7 g8 NtRp6389 (dp6390 g11 Nsg12 I201 sg13 I01 sg14 g3 (g15 g8 NtRp6391 (dp6392 g18 g3 (g19 g5 (ltRp6393 (dp6394 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6395 (dp6396 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6397 (dp6398 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6399 (dp6400 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p6401 sg22 I00 sg37 g38 sg39 g6401 sbag3 (g7 g8 NtRp6402 (dp6403 g11 Nsg12 I202 sg13 I01 sg14 g3 (g15 g8 NtRp6404 (dp6405 g18 g3 (g19 g5 (ltRp6406 (dp6407 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6408 (dp6409 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6410 (dp6411 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6412 (dp6413 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p6414 sg22 I00 sg37 g38 sg39 g6414 sbag3 (g7 g8 NtRp6415 (dp6416 g11 Nsg12 I203 sg13 I01 sg14 g3 (g15 g8 NtRp6417 (dp6418 g18 g3 (g19 g5 (ltRp6419 (dp6420 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6421 (dp6422 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6423 (dp6424 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6425 (dp6426 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p6427 sg22 I00 sg37 g38 sg39 g6427 sbag3 (g7 g8 NtRp6428 (dp6429 g11 Nsg12 I204 sg13 I01 sg14 g3 (g15 g8 NtRp6430 (dp6431 g18 g3 (g19 g5 (ltRp6432 (dp6433 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6434 (dp6435 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6436 (dp6437 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6438 (dp6439 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p6440 sg22 I00 sg37 g38 sg39 g6440 sbag3 (g7 g8 NtRp6441 (dp6442 g11 Nsg12 I205 sg13 I01 sg14 g3 (g15 g8 NtRp6443 (dp6444 g18 g3 (g19 g5 (ltRp6445 (dp6446 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6447 (dp6448 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6449 (dp6450 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6451 (dp6452 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p6453 sg22 I00 sg37 g38 sg39 g6453 sbag3 (g7 g8 NtRp6454 (dp6455 g11 Nsg12 I206 sg13 I01 sg14 g3 (g15 g8 NtRp6456 (dp6457 g18 g3 (g19 g5 (ltRp6458 (dp6459 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6460 (dp6461 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6462 (dp6463 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6464 (dp6465 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p6466 sg22 I00 sg37 g38 sg39 g6466 sbag3 (g7 g8 NtRp6467 (dp6468 g11 Nsg12 I207 sg13 I01 sg14 g3 (g15 g8 NtRp6469 (dp6470 g18 g3 (g19 g5 (ltRp6471 (dp6472 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6473 (dp6474 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6475 (dp6476 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6477 (dp6478 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p6479 sg22 I00 sg37 g38 sg39 g6479 sbag3 (g7 g8 NtRp6480 (dp6481 g11 Nsg12 I208 sg13 I01 sg14 g3 (g15 g8 NtRp6482 (dp6483 g18 g3 (g19 g5 (ltRp6484 (dp6485 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6486 (dp6487 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6488 (dp6489 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6490 (dp6491 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p6492 sg22 I00 sg37 g38 sg39 g6492 sbag3 (g7 g8 NtRp6493 (dp6494 g11 Nsg12 I209 sg13 I01 sg14 g3 (g15 g8 NtRp6495 (dp6496 g18 g3 (g19 g5 (ltRp6497 (dp6498 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6499 (dp6500 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6501 (dp6502 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6503 (dp6504 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p6505 sg22 I00 sg37 g38 sg39 g6505 sbag3 (g7 g8 NtRp6506 (dp6507 g11 Nsg12 I210 sg13 I01 sg14 g3 (g15 g8 NtRp6508 (dp6509 g18 g3 (g19 g5 (ltRp6510 (dp6511 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6512 (dp6513 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6514 (dp6515 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6516 (dp6517 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p6518 sg22 I00 sg37 g38 sg39 g6518 sbag3 (g7 g8 NtRp6519 (dp6520 g11 Nsg12 I211 sg13 I01 sg14 g3 (g15 g8 NtRp6521 (dp6522 g18 g3 (g19 g5 (ltRp6523 (dp6524 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6525 (dp6526 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6527 (dp6528 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6529 (dp6530 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p6531 sg22 I00 sg37 g38 sg39 g6531 sbag3 (g7 g8 NtRp6532 (dp6533 g11 Nsg12 I212 sg13 I01 sg14 g3 (g15 g8 NtRp6534 (dp6535 g18 g3 (g19 g5 (ltRp6536 (dp6537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6538 (dp6539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6540 (dp6541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6542 (dp6543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p6544 sg22 I00 sg37 g38 sg39 g6544 sbag3 (g7 g8 NtRp6545 (dp6546 g11 Nsg12 I213 sg13 I01 sg14 g3 (g15 g8 NtRp6547 (dp6548 g18 g3 (g19 g5 (ltRp6549 (dp6550 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6551 (dp6552 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6553 (dp6554 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6555 (dp6556 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p6557 sg22 I00 sg37 g38 sg39 g6557 sbag3 (g7 g8 NtRp6558 (dp6559 g11 Nsg12 I214 sg13 I01 sg14 g3 (g15 g8 NtRp6560 (dp6561 g18 g3 (g19 g5 (ltRp6562 (dp6563 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6564 (dp6565 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6566 (dp6567 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6568 (dp6569 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p6570 sg22 I00 sg37 g38 sg39 g6570 sbag3 (g7 g8 NtRp6571 (dp6572 g11 Nsg12 I215 sg13 I01 sg14 g3 (g15 g8 NtRp6573 (dp6574 g18 g3 (g19 g5 (ltRp6575 (dp6576 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6577 (dp6578 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6579 (dp6580 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6581 (dp6582 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p6583 sg22 I00 sg37 g38 sg39 g6583 sbag3 (g7 g8 NtRp6584 (dp6585 g11 Nsg12 I216 sg13 I01 sg14 g3 (g15 g8 NtRp6586 (dp6587 g18 g3 (g19 g5 (ltRp6588 (dp6589 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6590 (dp6591 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6592 (dp6593 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6594 (dp6595 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p6596 sg22 I00 sg37 g38 sg39 g6596 sbag3 (g7 g8 NtRp6597 (dp6598 g11 Nsg12 I217 sg13 I01 sg14 g3 (g15 g8 NtRp6599 (dp6600 g18 g3 (g19 g5 (ltRp6601 (dp6602 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6603 (dp6604 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6605 (dp6606 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6607 (dp6608 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p6609 sg22 I00 sg37 g38 sg39 g6609 sbag3 (g7 g8 NtRp6610 (dp6611 g11 Nsg12 I218 sg13 I01 sg14 g3 (g15 g8 NtRp6612 (dp6613 g18 g3 (g19 g5 (ltRp6614 (dp6615 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6616 (dp6617 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6618 (dp6619 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6620 (dp6621 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p6622 sg22 I00 sg37 g38 sg39 g6622 sbag3 (g7 g8 NtRp6623 (dp6624 g11 Nsg12 I219 sg13 I01 sg14 g3 (g15 g8 NtRp6625 (dp6626 g18 g3 (g19 g5 (ltRp6627 (dp6628 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6629 (dp6630 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6631 (dp6632 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6633 (dp6634 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p6635 sg22 I00 sg37 g38 sg39 g6635 sbag3 (g7 g8 NtRp6636 (dp6637 g11 Nsg12 I220 sg13 I01 sg14 g3 (g15 g8 NtRp6638 (dp6639 g18 g3 (g19 g5 (ltRp6640 (dp6641 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6642 (dp6643 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6644 (dp6645 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6646 (dp6647 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p6648 sg22 I00 sg37 g38 sg39 g6648 sbag3 (g7 g8 NtRp6649 (dp6650 g11 Nsg12 I221 sg13 I01 sg14 g3 (g15 g8 NtRp6651 (dp6652 g18 g3 (g19 g5 (ltRp6653 (dp6654 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6655 (dp6656 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6657 (dp6658 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6659 (dp6660 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p6661 sg22 I00 sg37 g38 sg39 g6661 sbag3 (g7 g8 NtRp6662 (dp6663 g11 Nsg12 I222 sg13 I01 sg14 g3 (g15 g8 NtRp6664 (dp6665 g18 g3 (g19 g5 (ltRp6666 (dp6667 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6668 (dp6669 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6670 (dp6671 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6672 (dp6673 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p6674 sg22 I00 sg37 g38 sg39 g6674 sbag3 (g7 g8 NtRp6675 (dp6676 g11 Nsg12 I223 sg13 I01 sg14 g3 (g15 g8 NtRp6677 (dp6678 g18 g3 (g19 g5 (ltRp6679 (dp6680 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6681 (dp6682 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6683 (dp6684 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6685 (dp6686 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p6687 sg22 I00 sg37 g38 sg39 g6687 sbag3 (g7 g8 NtRp6688 (dp6689 g11 Nsg12 I224 sg13 I01 sg14 g3 (g15 g8 NtRp6690 (dp6691 g18 g3 (g19 g5 (ltRp6692 (dp6693 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6694 (dp6695 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6696 (dp6697 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6698 (dp6699 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p6700 sg22 I00 sg37 g38 sg39 g6700 sbag3 (g7 g8 NtRp6701 (dp6702 g11 Nsg12 I225 sg13 I01 sg14 g3 (g15 g8 NtRp6703 (dp6704 g18 g3 (g19 g5 (ltRp6705 (dp6706 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6707 (dp6708 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6709 (dp6710 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6711 (dp6712 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p6713 sg22 I00 sg37 g38 sg39 g6713 sbag3 (g7 g8 NtRp6714 (dp6715 g11 Nsg12 I226 sg13 I01 sg14 g3 (g15 g8 NtRp6716 (dp6717 g18 g3 (g19 g5 (ltRp6718 (dp6719 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6720 (dp6721 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6722 (dp6723 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6724 (dp6725 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p6726 sg22 I00 sg37 g38 sg39 g6726 sbag3 (g7 g8 NtRp6727 (dp6728 g11 Nsg12 I227 sg13 I01 sg14 g3 (g15 g8 NtRp6729 (dp6730 g18 g3 (g19 g5 (ltRp6731 (dp6732 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6733 (dp6734 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6735 (dp6736 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6737 (dp6738 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p6739 sg22 I00 sg37 g38 sg39 g6739 sbag3 (g7 g8 NtRp6740 (dp6741 g11 Nsg12 I228 sg13 I01 sg14 g3 (g15 g8 NtRp6742 (dp6743 g18 g3 (g19 g5 (ltRp6744 (dp6745 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6746 (dp6747 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6748 (dp6749 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6750 (dp6751 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p6752 sg22 I00 sg37 g38 sg39 g6752 sbag3 (g7 g8 NtRp6753 (dp6754 g11 Nsg12 I229 sg13 I01 sg14 g3 (g15 g8 NtRp6755 (dp6756 g18 g3 (g19 g5 (ltRp6757 (dp6758 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6759 (dp6760 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6761 (dp6762 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6763 (dp6764 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p6765 sg22 I00 sg37 g38 sg39 g6765 sbag3 (g7 g8 NtRp6766 (dp6767 g11 Nsg12 I230 sg13 I01 sg14 g3 (g15 g8 NtRp6768 (dp6769 g18 g3 (g19 g5 (ltRp6770 (dp6771 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6772 (dp6773 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6774 (dp6775 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6776 (dp6777 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p6778 sg22 I00 sg37 g38 sg39 g6778 sbag3 (g7 g8 NtRp6779 (dp6780 g11 Nsg12 I231 sg13 I01 sg14 g3 (g15 g8 NtRp6781 (dp6782 g18 g3 (g19 g5 (ltRp6783 (dp6784 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6785 (dp6786 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6787 (dp6788 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6789 (dp6790 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p6791 sg22 I00 sg37 g38 sg39 g6791 sbag3 (g7 g8 NtRp6792 (dp6793 g11 Nsg12 I232 sg13 I01 sg14 g3 (g15 g8 NtRp6794 (dp6795 g18 g3 (g19 g5 (ltRp6796 (dp6797 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6798 (dp6799 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6800 (dp6801 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6802 (dp6803 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p6804 sg22 I00 sg37 g38 sg39 g6804 sbag3 (g7 g8 NtRp6805 (dp6806 g11 Nsg12 I233 sg13 I01 sg14 g3 (g15 g8 NtRp6807 (dp6808 g18 g3 (g19 g5 (ltRp6809 (dp6810 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6811 (dp6812 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6813 (dp6814 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6815 (dp6816 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p6817 sg22 I00 sg37 g38 sg39 g6817 sbag3 (g7 g8 NtRp6818 (dp6819 g11 Nsg12 I234 sg13 I01 sg14 g3 (g15 g8 NtRp6820 (dp6821 g18 g3 (g19 g5 (ltRp6822 (dp6823 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6824 (dp6825 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6826 (dp6827 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6828 (dp6829 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p6830 sg22 I00 sg37 g38 sg39 g6830 sbag3 (g7 g8 NtRp6831 (dp6832 g11 Nsg12 I235 sg13 I01 sg14 g3 (g15 g8 NtRp6833 (dp6834 g18 g3 (g19 g5 (ltRp6835 (dp6836 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6837 (dp6838 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6839 (dp6840 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6841 (dp6842 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p6843 sg22 I00 sg37 g38 sg39 g6843 sbag3 (g7 g8 NtRp6844 (dp6845 g11 Nsg12 I236 sg13 I01 sg14 g3 (g15 g8 NtRp6846 (dp6847 g18 g3 (g19 g5 (ltRp6848 (dp6849 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6850 (dp6851 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6852 (dp6853 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6854 (dp6855 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p6856 sg22 I00 sg37 g38 sg39 g6856 sbag3 (g7 g8 NtRp6857 (dp6858 g11 Nsg12 I237 sg13 I01 sg14 g3 (g15 g8 NtRp6859 (dp6860 g18 g3 (g19 g5 (ltRp6861 (dp6862 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6863 (dp6864 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6865 (dp6866 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6867 (dp6868 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p6869 sg22 I00 sg37 g38 sg39 g6869 sbag3 (g7 g8 NtRp6870 (dp6871 g11 Nsg12 I238 sg13 I01 sg14 g3 (g15 g8 NtRp6872 (dp6873 g18 g3 (g19 g5 (ltRp6874 (dp6875 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6876 (dp6877 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6878 (dp6879 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6880 (dp6881 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p6882 sg22 I00 sg37 g38 sg39 g6882 sbag3 (g7 g8 NtRp6883 (dp6884 g11 Nsg12 I239 sg13 I01 sg14 g3 (g15 g8 NtRp6885 (dp6886 g18 g3 (g19 g5 (ltRp6887 (dp6888 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6889 (dp6890 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6891 (dp6892 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6893 (dp6894 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p6895 sg22 I00 sg37 g38 sg39 g6895 sbag3 (g7 g8 NtRp6896 (dp6897 g11 Nsg12 I240 sg13 I01 sg14 g3 (g15 g8 NtRp6898 (dp6899 g18 g3 (g19 g5 (ltRp6900 (dp6901 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6902 (dp6903 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6904 (dp6905 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6906 (dp6907 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p6908 sg22 I00 sg37 g38 sg39 g6908 sbag3 (g7 g8 NtRp6909 (dp6910 g11 Nsg12 I241 sg13 I01 sg14 g3 (g15 g8 NtRp6911 (dp6912 g18 g3 (g19 g5 (ltRp6913 (dp6914 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6915 (dp6916 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6917 (dp6918 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6919 (dp6920 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p6921 sg22 I00 sg37 g38 sg39 g6921 sbag3 (g7 g8 NtRp6922 (dp6923 g11 Nsg12 I242 sg13 I01 sg14 g3 (g15 g8 NtRp6924 (dp6925 g18 g3 (g19 g5 (ltRp6926 (dp6927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6928 (dp6929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6930 (dp6931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6932 (dp6933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p6934 sg22 I00 sg37 g38 sg39 g6934 sbag3 (g7 g8 NtRp6935 (dp6936 g11 Nsg12 I243 sg13 I01 sg14 g3 (g15 g8 NtRp6937 (dp6938 g18 g3 (g19 g5 (ltRp6939 (dp6940 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6941 (dp6942 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6943 (dp6944 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6945 (dp6946 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p6947 sg22 I00 sg37 g38 sg39 g6947 sbag3 (g7 g8 NtRp6948 (dp6949 g11 Nsg12 I244 sg13 I01 sg14 g3 (g15 g8 NtRp6950 (dp6951 g18 g3 (g19 g5 (ltRp6952 (dp6953 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6954 (dp6955 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6956 (dp6957 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6958 (dp6959 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p6960 sg22 I00 sg37 g38 sg39 g6960 sbatRp6961 (dp6962 g12 I244 sg22 I00 sg11 Nsbs.</svRestConfiguration> </statManagerOptions> <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> diff --git a/samples/vnf_samples/traffic_profiles/ixload/HTTP-Connections_2Ports.rxf b/samples/vnf_samples/traffic_profiles/ixload/HTTP-Connections_2Ports.rxf new file mode 100644 index 000000000..f1403a38c --- /dev/null +++ b/samples/vnf_samples/traffic_profiles/ixload/HTTP-Connections_2Ports.rxf @@ -0,0 +1,1289 @@ +<?xml version="1.0" ?> +<root ver="[21, [1, [0, [0]]]]" type="ixRepository"> + <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> + <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="628fdbe1-4254-48b1-8765-a4d5bbafd1ff" version="6.70.442"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442"> <name type="String">uplink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.442"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.442"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.442"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442"> <name type="String">downlink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.442"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.442"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.442"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.80.2"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.80.2"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.80.2"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.80.2"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <payloadAttrTypes type="ListNode" /> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.442"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> + </_smSessionXml> + <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> + <xml type="str"></xml> + </_composerConfig> + <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig"> + <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> + </_quickTestConfig> + <lastApiUniqueId type="int">15481</lastApiUniqueId> + <version type="str">8.30.115.152</version> + <name type="str">HTTP-Connections_2Ports.rxf</name> + <comment type="str"></comment> + <path type="str">C:\ixload</path> + <last type="str">HTTP-Connections_2Ports.rxf</last> + <activeTest type="str">Test1</activeTest> + <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> + <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> + <_apiUniqueId type="int">12991</_apiUniqueId> + <chassisMap type="dict"/> + <hiddenChassis type="NoneType">None</hiddenChassis> + </chassisChain> + <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/> + <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/> + <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/> + <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/> + <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope"> + <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope"> + <name type="str">Test1</name> + <comment type="str"></comment> + <enableForceOwnership type="bool">False</enableForceOwnership> + <enableResetPorts type="bool">False</enableResetPorts> + <statsRequired type="int">1</statsRequired> + <enableConditionalView type="bool">False</enableConditionalView> + <conditionalViewType type="int">0</conditionalViewType> + <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/> + <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun> + <csvInterval type="int">4</csvInterval> + <networkFailureThreshold type="int">0</networkFailureThreshold> + <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions"> + <runMode type="int">1</runMode> + <collectScheme type="int">0</collectScheme> + <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage> + <captureRunAfter type="int">0</captureRunAfter> + <captureRunDuration type="int">0</captureRunDuration> + <_apiUniqueId type="int">12941</_apiUniqueId> + </captureViewOptions> + <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario"> + <item ver="[3, [1, [0, [0]]]]" type="ixScenario"> + <name type="str">TrafficFlow1</name> + <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn"> + <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> + <name type="str">Client</name> + <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> + <item ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> + <name type="str">HTTP client@uplink_0</name> + <column type="NoneType">None</column> + <scenarioElementType type="str">netTraffic</scenarioElementType> + <enable type="int">1</enable> + <role type="str">Client</role> + <networkType type="str">ethernet</networkType> + <activityFunction type="str">ipTrafficAgent</activityFunction> + <activeRole type="str">Client</activeRole> + <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> + <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> + <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> + <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> + <name type="str">HTTP client</name> + <role type="str">Client</role> + <activityFunction type="str">ipTrafficAgent</activityFunction> + <payload type="NoneType">None</payload> + <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> + <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin"> + <enable type="int">1</enable> + <name type="str">newClientActivity1</name> + <activityFunction type="str">ipTrafficAgent</activityFunction> + <needToRefreshStatViews type="bool">False</needToRefreshStatViews> + <activeRole type="NoneType">None</activeRole> + <cmdListLoops type="int">0</cmdListLoops> + <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> + <seed type="int">1</seed> + <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> + <_apiUniqueId type="int">12943</_apiUniqueId> + </cmdPercentagePool> + <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> + <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> + <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> + <name type="str">HTTP server_newServerActivity1</name> + <portMapPolicy type="str">portPairs</portMapPolicy> + <sameAs type="str"></sameAs> + <validPortMapPolicies type="list"> + <item type="str">portPairs</item> + <item type="str">portMesh</item> + <item type="str">customMesh</item> + </validPortMapPolicies> + <inUse type="bool">True</inUse> + <customPortMap type="NoneType">None</customPortMap> + <sourceCommunity ref="0"/> + <destinationCommunity ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> + <name type="str">HTTP server@downlink_0</name> + <column type="NoneType">None</column> + <scenarioElementType type="str">netTraffic</scenarioElementType> + <enable type="int">1</enable> + <role type="str">Server</role> + <networkType type="str">ethernet</networkType> + <activityFunction type="str">ipTrafficAgent</activityFunction> + <activeRole type="str">Server</activeRole> + <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> + <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> + <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> + <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> + <name type="str">HTTP server</name> + <role type="str">Server</role> + <activityFunction type="str">ipTrafficAgent</activityFunction> + <payload type="NoneType">None</payload> + <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> + <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin"> + <enable type="int">1</enable> + <name type="str">newServerActivity1</name> + <activityFunction type="str">ipTrafficAgent</activityFunction> + <needToRefreshStatViews type="bool">False</needToRefreshStatViews> + <activeRole type="NoneType">None</activeRole> + <loopValue type="int">1</loopValue> + <cmdListLoops type="int">0</cmdListLoops> + <cmdPercentagePool type="NoneType">None</cmdPercentagePool> + <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> + <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> + <flowPercentage type="float">100.0</flowPercentage> + <httpPort type="str">80</httpPort> + <httpsPort type="str">443</httpsPort> + <requestTimeout type="int">300</requestTimeout> + <minResponseDelay type="int">0</minResponseDelay> + <maxResponseDelay type="int">0</maxResponseDelay> + <acceptSslConnections type="int">0</acceptSslConnections> + <enablesslRecordSize type="int">0</enablesslRecordSize> + <validateCertificate type="int">0</validateCertificate> + <sslRecordSize type="str">16384</sslRecordSize> + <urlStatsCount type="int">10</urlStatsCount> + <rstTimeout type="int">100</rstTimeout> + <enableEsm type="int">0</enableEsm> + <esm type="int">1460</esm> + <enableTos type="bool">False</enableTos> + <enableVlanPriority type="int">0</enableVlanPriority> + <vlanPriority type="int">0</vlanPriority> + <enableIntegrityCheck type="int">0</enableIntegrityCheck> + <tos type="int">0</tos> + <precedenceTOS type="int">0</precedenceTOS> + <delayTOS type="int">0</delayTOS> + <throughputTOS type="int">0</throughputTOS> + <reliabilityTOS type="int">0</reliabilityTOS> + <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> + <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> + <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> + <name type="str">200_OK</name> + <description type="str">OK</description> + <code type="str">200</code> + <mimeType type="str">text/plain</mimeType> + <dateMode type="int">2</dateMode> + <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> + <dateIncrementEnable type="bool">False</dateIncrementEnable> + <dateIncrementBy type="int">5</dateIncrementBy> + <dateIncrementFor type="int">1</dateIncrementFor> + <dateZone type="str">GMT</dateZone> + <expirationMode type="int">0</expirationMode> + <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> + <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> + <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> + <lastModifiedMode type="int">1</lastModifiedMode> + <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> + <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> + <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> + <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> + <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> + <readOnly type="bool">True</readOnly> + <enableCustomPutResponse type="bool">False</enableCustomPutResponse> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12972</_apiUniqueId> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> + <name type="str">404_PageNotFound</name> + <description type="str">Page not found</description> + <code type="str">404</code> + <mimeType type="str">text/plain</mimeType> + <dateMode type="int">2</dateMode> + <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> + <dateIncrementEnable type="bool">False</dateIncrementEnable> + <dateIncrementBy type="int">5</dateIncrementBy> + <dateIncrementFor type="int">1</dateIncrementFor> + <dateZone type="str">GMT</dateZone> + <expirationMode type="int">0</expirationMode> + <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> + <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> + <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> + <lastModifiedMode type="int">1</lastModifiedMode> + <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> + <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> + <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> + <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> + <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> + <readOnly type="bool">True</readOnly> + <enableCustomPutResponse type="bool">False</enableCustomPutResponse> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12973</_apiUniqueId> + </item> + </responseHeaderList> + <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> + <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> + <name type="str">UserCookie</name> + <description type="str">Name of User</description> + <type type="int">2</type> + <mode type="int">3</mode> + <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> + <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> + <name type="str">firstName</name> + <value type="str">Joe</value> + <path type="str"></path> + <maxAge type="str"></maxAge> + <domain type="str"></domain> + <other type="str"></other> + <objectID type="int">0</objectID> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> + <name type="str">lastName</name> + <value type="str">Smith</value> + <path type="str"></path> + <maxAge type="str"></maxAge> + <domain type="str"></domain> + <other type="str"></other> + <objectID type="int">1</objectID> + </item> + </cookieContentList> + <readOnly type="bool">True</readOnly> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12987</_apiUniqueId> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> + <name type="str">LoginCookie</name> + <description type="str">Login name and password</description> + <type type="int">2</type> + <mode type="int">2</mode> + <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> + <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> + <name type="str">name</name> + <value type="str">joesmith</value> + <path type="str"></path> + <maxAge type="str"></maxAge> + <domain type="str"></domain> + <other type="str"></other> + <objectID type="int">0</objectID> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> + <name type="str">password</name> + <value type="str">foobar</value> + <path type="str"></path> + <maxAge type="str"></maxAge> + <domain type="str"></domain> + <other type="str"></other> + <objectID type="int">1</objectID> + </item> + </cookieContentList> + <readOnly type="bool">True</readOnly> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12988</_apiUniqueId> + </item> + </cookieList> + <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/1b.html</page> + <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader"> + <name type="str">200_OK</name> + <description type="str">OK</description> + <code type="str">200</code> + <mimeType type="str">text/plain</mimeType> + <dateMode type="int">2</dateMode> + <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> + <dateIncrementEnable type="bool">False</dateIncrementEnable> + <dateIncrementBy type="int">5</dateIncrementBy> + <dateIncrementFor type="int">1</dateIncrementFor> + <dateZone type="str">GMT</dateZone> + <expirationMode type="int">0</expirationMode> + <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> + <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> + <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> + <lastModifiedMode type="int">1</lastModifiedMode> + <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> + <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> + <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> + <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> + <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> + <readOnly type="bool">True</readOnly> + <enableCustomPutResponse type="bool">False</enableCustomPutResponse> + <_apiUniqueId type="int">12984</_apiUniqueId> + </response> + <payloadType type="str">range</payloadType> + <payloadSize type="str">1-1</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12974</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/4k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">4096-4096</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12975</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/8k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">8192-8192</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">2</objectID> + <_apiUniqueId type="int">12976</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/16k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">16536-16536</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">3</objectID> + <_apiUniqueId type="int">12977</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/32k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">32768</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">4</objectID> + <_apiUniqueId type="int">12978</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/64k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">65536</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">5</objectID> + <_apiUniqueId type="int">12979</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/128k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">131072</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">6</objectID> + <_apiUniqueId type="int">12980</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/256k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">262144</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">7</objectID> + <_apiUniqueId type="int">12981</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/512k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">524288</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">8</objectID> + <_apiUniqueId type="int">12982</_apiUniqueId> + </item> + <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> + <page type="str">/1024k.html</page> + <response ref="1"/> + <payloadType type="str">range</payloadType> + <payloadSize type="str">1048576</payloadSize> + <payloadFile type="str"><specify file></payloadFile> + <cookie type="NoneType">None</cookie> + <customPayloadId type="int">-1</customPayloadId> + <Md5Option type="int">3</Md5Option> + <chunkSize type="str">512-1024</chunkSize> + <objectID type="int">9</objectID> + <_apiUniqueId type="int">12983</_apiUniqueId> + </item> + </webPageList> + <ServerCiphers type="str">DEFAULT</ServerCiphers> + <privateKeyPassword type="str"></privateKeyPassword> + <privateKey type="str"></privateKey> + <certificate type="str"></certificate> + <caCert type="str"></caCert> + <enableDHsupport type="int">0</enableDHsupport> + <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> + <dhParams type="str"></dhParams> + <tcpCloseOption type="int">0</tcpCloseOption> + <docrootfile type="str"></docrootfile> + <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> + <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> + <id type="int">0</id> + <name type="str">AsciiCustomPayload</name> + <payloadPosition type="str">Start With</payloadPosition> + <payloadmode type="int">0</payloadmode> + <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> + <hexPayloadValue type="str"></hexPayloadValue> + <repeat type="int">0</repeat> + <offset type="int">1</offset> + <readOnly type="bool">True</readOnly> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12985</_apiUniqueId> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> + <id type="int">1</id> + <name type="str">HexCustomPayload</name> + <payloadPosition type="str">Start With</payloadPosition> + <payloadmode type="int">1</payloadmode> + <asciiPayloadValue type="str"></asciiPayloadValue> + <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> + <repeat type="int">0</repeat> + <offset type="int">1</offset> + <readOnly type="bool">True</readOnly> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12986</_apiUniqueId> + </item> + </customPayloadList> + <enableMD5Checksum type="bool">False</enableMD5Checksum> + <integrityCheckOption type="str">Custom MD5</integrityCheckOption> + <uniqueID type="int">2</uniqueID> + <enableChunkEncoding type="bool">False</enableChunkEncoding> + <docrootChunkSize type="str">512-1024</docrootChunkSize> + <urlPageSize type="int">1024</urlPageSize> + <enableChunkedRequest type="bool">False</enableChunkedRequest> + <enableNewSslSupport type="bool">False</enableNewSslSupport> + <enableHTTP2 type="bool">False</enableHTTP2> + <dontExpectUpgrade type="bool">False</dontExpectUpgrade> + <disableMacValidation type="int">0</disableMacValidation> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12971</_apiUniqueId> + <commandIdCounter type="int">0</commandIdCounter> + <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> + <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"/> + </serializedNetworkSettingsMap> + <protocolName type="str">HTTP</protocolName> + </networkPluginSettings> + </item> + </agentList> + </traffic> + <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> + <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> + <name type="str">downlink_0</name> + <role type="str">Server</role> + <networkType type="str">none</networkType> + <aggregation type="int">0</aggregation> + <lineSpeed type="str">Default</lineSpeed> + <cpuAggregation type="bool">False</cpuAggregation> + <chassisChain ref="2"/> + <cardType type="str">FLEXAP1040SQ</cardType> + <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> + <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> + <comment type="str"></comment> + <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> + <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> + <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> + <name type="str">Network Range IP-R2 in downlink_0 (152.40.40.20+1)</name> + <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> + <name type="str">DistGroup1</name> + <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12961</_apiUniqueId> + <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> + <item ref="3"/> + </_networkRangeList> + <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId> + <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId> + </rangeGroup> + <enableStats type="bool">False</enableStats> + </item> + </networkRangeList> + <layerPlugins type="NoneType">None</layerPlugins> + <stack type="NoneType">None</stack> + <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> + <item ref="4"/> + </rangeGroupList> + <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> + <linkLayerOptions type="int">0</linkLayerOptions> + <ipSourcePortFrom type="int">1024</ipSourcePortFrom> + <ipSourcePortTo type="int">65535</ipSourcePortTo> + <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> + <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> + <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> + <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> + <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> + <macMappingMode type="int">0</macMappingMode> + <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> + <gratuitousArp type="bool">True</gratuitousArp> + <processGratArp type="bool">False</processGratArp> + </arpSettings> + <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> + <enable type="int">0</enable> + <cacheTimeout type="int">30000</cacheTimeout> + <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> + <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> + </dnsParameters> + <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> + <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull"> + <enableCongestionNotification type="bool">False</enableCongestionNotification> + <enableTimeStamp type="bool">True</enableTimeStamp> + <timeWaitRecycle type="bool">True</timeWaitRecycle> + <timeWaitReuse type="bool">False</timeWaitReuse> + <enableTxBwLimit type="bool">False</enableTxBwLimit> + <txBwLimitUnit type="int">0</txBwLimitUnit> + <txBwLimit type="int">1024</txBwLimit> + <enableRxBwLimit type="bool">False</enableRxBwLimit> + <rxBwLimitUnit type="int">0</rxBwLimitUnit> + <rxBwLimit type="int">1024</rxBwLimit> + <finTimeout type="int">60</finTimeout> + <keepAliveInterval type="int">7200</keepAliveInterval> + <keepAliveProbes type="int">75</keepAliveProbes> + <keepAliveTime type="int">9</keepAliveTime> + <synRetries type="int">5</synRetries> + <synAckRetries type="int">5</synAckRetries> + <retransmitRetries type="int">15</retransmitRetries> + <transmitBuffer type="int">1024</transmitBuffer> + <receiveBuffer type="int">1024</receiveBuffer> + <tcpSack type="bool">True</tcpSack> + <windowScaling type="bool">False</windowScaling> + <rtoMin type="int">1000</rtoMin> + <rtoMax type="int">120000</rtoMax> + </tcpParametersFull> + <tcpParametersFull ref="5"/> + </tcpParameters> + <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> + <enable type="bool">False</enable> + <addDelay type="bool">True</addDelay> + <addReorder type="bool">False</addReorder> + <addDrop type="bool">False</addDrop> + <addDuplicate type="bool">False</addDuplicate> + <randomizeSeed type="bool">False</randomizeSeed> + <delay type="int">1</delay> + <reorder type="int">1</reorder> + <reorderLength type="int">1</reorderLength> + <sourcePort type="int">0</sourcePort> + <destinationPort type="int">0</destinationPort> + <drop type="int">1</drop> + <duplicate type="int">1</duplicate> + <jitter type="int">0</jitter> + <gap type="int">1</gap> + <destinationIp type="str">any</destinationIp> + <typeOfService type="str">any</typeOfService> + <protocol type="str">any</protocol> + <addFragmentation type="bool">False</addFragmentation> + <fragmentationType type="str">FragmentationPercent</fragmentationType> + <fragmentPercent type="int">50</fragmentPercent> + <mtu type="int">1000</mtu> + <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> + <fragmentSequenceLength type="int">1</fragmentSequenceLength> + <_seed type="int">1</_seed> + </impairment> + <_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId> + <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> + <externalLinks type="dict"/> + </_smExternalLinks> + <smVersion type="int">1</smVersion> + </network> + <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> + <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> + <agent ref="6"/> + <protocolAndType type="str">HTTP Server</protocolAndType> + <name type="str">newServerActivity1</name> + <enable type="bool">True</enable> + <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/> + <customParameters type="NoneType">None</customParameters> + <role type="str">Server</role> + <activeRole type="str">Server</activeRole> + <objectivePercent type="float">100.0</objectivePercent> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12989</_apiUniqueId> + <_objectiveValue type="int">100</_objectiveValue> + <timelineScale type="float">1.0</timelineScale> + </item> + </activityParameters> + <timeline ref="7"/> + <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> + <captureViewOptions ref="8"/> + <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> + <filterString type="str"></filterString> + </filter> + <portList ref="9"/> + <enable type="bool">False</enable> + <_apiUniqueId type="int">12970</_apiUniqueId> + </communityCapture> + <payload type="NoneType">None</payload> + <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring"> + <rangeAgentConnections type="list"/> + <_apiUniqueId type="int">12956</_apiUniqueId> + <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"> + <item type="tuple"> + <item ref="3"/> + <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> + <range ref="3"/> + <agentEndpointConnections type="list"/> + <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"> + <item type="tuple"> + <item ref="6"/> + <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> + <agent ref="6"/> + <endpoints type="list"/> + <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"> + <item type="tuple"> + <item type="str">HTTP Server</item> + <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> + <endpointName type="str">HTTP Server</endpointName> + <isAvailable type="bool">True</isAvailable> + </item> + </item> + </_dict> + </endpointsDict> + </item> + </item> + </_dict> + </agentConnectionsDict> + </item> + </item> + </_dict> + </rangeAgentDict> + </activityIpWiring> + <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> + <iterations type="int">1</iterations> + <standbyTime type="int">0</standbyTime> + <offlineTime type="int">0</offlineTime> + <sustainTime type="int">620</sustainTime> + <iterationTime type="int">620</iterationTime> + <totalTime type="int">620</totalTime> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12955</_apiUniqueId> + <isVisible type="bool">True</isVisible> + <activityIpWiring ref="10"/> + <_portOperationModesAllowed type="dict"> + <item> + <key type="int">0</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">1</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">2</key> + <value type="bool">False</value> + </item> + <item> + <key type="int">3</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">4</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">8</key> + <value type="bool">True</value> + </item> + </_portOperationModesAllowed> + <_tcpAccelerationAllowed type="dict"> + <item> + <key type="int">0</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">1</key> + <value type="bool">False</value> + </item> + </_tcpAccelerationAllowed> + </destinationCommunity> + <destinationAgentName type="str">newServerActivity1</destinationAgentName> + <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> + <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> + <intRange type="str">80</intRange> + <objectID type="int">0</objectID> + <iStartingValue type="int">80</iStartingValue> + <iCount type="int">1</iCount> + </item> + </portRangeList> + <count type="int">1</count> + </item> + </destinations> + <flowPercentage type="float">100.0</flowPercentage> + <maxSessions type="int">1</maxSessions> + <maxStreams type="int">1</maxStreams> + <dontUseUpgrade type="int">0</dontUseUpgrade> + <httpVersion type="int">1</httpVersion> + <keepAlive type="bool">False</keepAlive> + <maxPersistentRequests type="int">0</maxPersistentRequests> + <followHttpRedirects type="int">0</followHttpRedirects> + <enableCookieSupport type="int">0</enableCookieSupport> + <maxPipeline type="int">1</maxPipeline> + <urlStatsCount type="int">10</urlStatsCount> + <enableHttpProxy type="int">0</enableHttpProxy> + <httpProxy type="str">:80</httpProxy> + <enableHttpsProxy type="int">0</enableHttpsProxy> + <httpsProxy type="str">:443</httpsProxy> + <browserEmulation type="int">1</browserEmulation> + <browserEmulationName type="str">Custom1</browserEmulationName> + <enableSsl type="int">0</enableSsl> + <sslVersion type="int">3</sslVersion> + <disableMacValidation type="int">0</disableMacValidation> + <sslReuseMethod type="int">0</sslReuseMethod> + <sequentialSessionReuse type="int">0</sequentialSessionReuse> + <enablesslRecordSize type="int">0</enablesslRecordSize> + <validateCertificate type="int">0</validateCertificate> + <sslRecordSize type="str">16384</sslRecordSize> + <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> + <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> + <privateKeyPassword type="str"></privateKeyPassword> + <privateKey type="str"></privateKey> + <certificate type="str"></certificate> + <caCert type="str"></caCert> + <clientCiphers type="str">DEFAULT</clientCiphers> + <enableEsm type="int">0</enableEsm> + <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> + <perHeaderPercentDist type="int">0</perHeaderPercentDist> + <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> + <esm type="int">1460</esm> + <enableVlanPriority type="int">0</enableVlanPriority> + <vlanPriority type="int">0</vlanPriority> + <enableTos type="bool">False</enableTos> + <tos type="int">0</tos> + <precedenceTOS type="int">0</precedenceTOS> + <delayTOS type="int">0</delayTOS> + <throughputTOS type="int">0</throughputTOS> + <reliabilityTOS type="int">0</reliabilityTOS> + <commandTimeout type="int">600</commandTimeout> + <commandTimeout_ms type="int">0</commandTimeout_ms> + <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> + <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> + <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> + <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> + <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> + <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> + <commandId type="int">-2</commandId> + <commandType type="str">START</commandType> + <cmdName type="str">Start</cmdName> + <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> + <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> + <name type="str">Output1</name> + <outputType type="int">0</outputType> + <destCmdId type="int">1</destCmdId> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12948</_apiUniqueId> + <destinationCommandIdx type="int">1</destinationCommandIdx> + </item> + </outputList> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12945</_apiUniqueId> + </item> + <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> + <commandId type="int">1</commandId> + <commandType type="str">GET</commandType> + <cmdName type="str">Get 1</cmdName> + <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> + <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> + <name type="str">Output1</name> + <outputType type="int">0</outputType> + <destCmdId type="int">-3</destCmdId> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12949</_apiUniqueId> + <destinationCommandIdx type="int">2</destinationCommandIdx> + </item> + </outputList> + <destination type="str">HTTP server_newServerActivity1:80</destination> + <pageObject type="str">/1b.html</pageObject> + <abort type="str">None</abort> + <arguments type="str"></arguments> + <namevalueargs type="str"></namevalueargs> + <profile type="int">-1</profile> + <enableDi type="int">0</enableDi> + <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> + <sendingChunkSize type="str">None</sendingChunkSize> + <sslProfile type="int">-1</sslProfile> + <method type="int">-1</method> + <useSsl type="bool">False</useSsl> + <windowSize type="str">65536</windowSize> + <streamIden type="int">3</streamIden> + <pingFreq type="int">10</pingFreq> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12946</_apiUniqueId> + </item> + <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> + <commandId type="int">-3</commandId> + <commandType type="str">STOP</commandType> + <cmdName type="str">Stop</cmdName> + <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> + <objectID type="int">2</objectID> + <_apiUniqueId type="int">12947</_apiUniqueId> + </item> + </actionList> + <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> + <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> + <data type="str">Accept: */*</data> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12950</_apiUniqueId> + </item> + <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> + <data type="str">Accept-Language: en-us</data> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12951</_apiUniqueId> + </item> + <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> + <data type="str">Accept-Encoding: gzip, deflate</data> + <objectID type="int">2</objectID> + <_apiUniqueId type="int">12952</_apiUniqueId> + </item> + <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> + <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data> + <objectID type="int">3</objectID> + <_apiUniqueId type="int">12953</_apiUniqueId> + </item> + </headerList> + <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> + <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> + <cookieJarSize type="int">10</cookieJarSize> + <cookieRejectProbability type="float">0.0</cookieRejectProbability> + <ipPreference type="int">2</ipPreference> + <tcpCloseOption type="int">0</tcpCloseOption> + <piggybackAck type="int">1</piggybackAck> + <tcpFastOpen type="int">0</tcpFastOpen> + <enableLargeHeader type="int">0</enableLargeHeader> + <maxHeaderLen type="int">1024</maxHeaderLen> + <useAllIPs type="int">0</useAllIPs> + <enableDecompressSupport type="int">0</enableDecompressSupport> + <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> + <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> + <enableAuth type="int">0</enableAuth> + <authProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthProfileList" itemtype="ixAuthProfile"/> + <ipMappingList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthIpMapList" itemtype="ixAuthIpMap"/> + <uniqueID type="int">1</uniqueID> + <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> + <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> + <httpsTunnel type="str">0.0.0.0</httpsTunnel> + <enableHttpsTunnel type="int">0</enableHttpsTunnel> + <exactTransactions type="int">0</exactTransactions> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12942</_apiUniqueId> + <uniqueID type="int">1</uniqueID> + <commandIdCounter type="int">1</commandIdCounter> + <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> + <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"/> + </serializedNetworkSettingsMap> + <protocolName type="str">HTTP</protocolName> + </networkPluginSettings> + </item> + </agentList> + </traffic> + <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> + <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> + <name type="str">uplink_0</name> + <role type="str">Client</role> + <networkType type="str">none</networkType> + <aggregation type="int">0</aggregation> + <lineSpeed type="str">Default</lineSpeed> + <cpuAggregation type="bool">False</cpuAggregation> + <chassisChain ref="2"/> + <cardType type="str">FLEXAP1040SQ</cardType> + <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> + <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> + <comment type="str"></comment> + <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> + <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> + <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> + <name type="str">Network Range IP-R1 in uplink_0 (152.16.100.20+1)</name> + <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> + <name type="str">DistGroup1</name> + <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12931</_apiUniqueId> + <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> + <item ref="11"/> + </_networkRangeList> + <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId> + <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId> + </rangeGroup> + <enableStats type="bool">False</enableStats> + </item> + </networkRangeList> + <layerPlugins type="NoneType">None</layerPlugins> + <stack type="NoneType">None</stack> + <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> + <item ref="12"/> + </rangeGroupList> + <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> + <linkLayerOptions type="int">0</linkLayerOptions> + <ipSourcePortFrom type="int">1024</ipSourcePortFrom> + <ipSourcePortTo type="int">65535</ipSourcePortTo> + <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> + <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> + <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> + <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> + <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> + <macMappingMode type="int">0</macMappingMode> + <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> + <gratuitousArp type="bool">True</gratuitousArp> + <processGratArp type="bool">False</processGratArp> + </arpSettings> + <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> + <enable type="int">0</enable> + <cacheTimeout type="int">30000</cacheTimeout> + <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> + <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> + </dnsParameters> + <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> + <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull"> + <enableCongestionNotification type="bool">False</enableCongestionNotification> + <enableTimeStamp type="bool">True</enableTimeStamp> + <timeWaitRecycle type="bool">True</timeWaitRecycle> + <timeWaitReuse type="bool">False</timeWaitReuse> + <enableTxBwLimit type="bool">False</enableTxBwLimit> + <txBwLimitUnit type="int">0</txBwLimitUnit> + <txBwLimit type="int">1024</txBwLimit> + <enableRxBwLimit type="bool">False</enableRxBwLimit> + <rxBwLimitUnit type="int">0</rxBwLimitUnit> + <rxBwLimit type="int">1024</rxBwLimit> + <finTimeout type="int">60</finTimeout> + <keepAliveInterval type="int">7200</keepAliveInterval> + <keepAliveProbes type="int">75</keepAliveProbes> + <keepAliveTime type="int">9</keepAliveTime> + <synRetries type="int">5</synRetries> + <synAckRetries type="int">5</synAckRetries> + <retransmitRetries type="int">15</retransmitRetries> + <transmitBuffer type="int">1024</transmitBuffer> + <receiveBuffer type="int">1024</receiveBuffer> + <tcpSack type="bool">True</tcpSack> + <windowScaling type="bool">False</windowScaling> + <rtoMin type="int">1000</rtoMin> + <rtoMax type="int">120000</rtoMax> + </tcpParametersFull> + <tcpParametersFull ref="13"/> + </tcpParameters> + <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> + <enable type="bool">False</enable> + <addDelay type="bool">True</addDelay> + <addReorder type="bool">False</addReorder> + <addDrop type="bool">False</addDrop> + <addDuplicate type="bool">False</addDuplicate> + <randomizeSeed type="bool">False</randomizeSeed> + <delay type="int">1</delay> + <reorder type="int">1</reorder> + <reorderLength type="int">1</reorderLength> + <sourcePort type="int">0</sourcePort> + <destinationPort type="int">0</destinationPort> + <drop type="int">1</drop> + <duplicate type="int">1</duplicate> + <jitter type="int">0</jitter> + <gap type="int">1</gap> + <destinationIp type="str">any</destinationIp> + <typeOfService type="str">any</typeOfService> + <protocol type="str">any</protocol> + <addFragmentation type="bool">False</addFragmentation> + <fragmentationType type="str">FragmentationPercent</fragmentationType> + <fragmentPercent type="int">50</fragmentPercent> + <mtu type="int">1000</mtu> + <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> + <fragmentSequenceLength type="int">1</fragmentSequenceLength> + <_seed type="int">1</_seed> + </impairment> + <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId> + <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> + <externalLinks type="dict"/> + </_smExternalLinks> + <smVersion type="int">1</smVersion> + </network> + <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> + <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> + <agent ref="14"/> + <protocolAndType type="str">HTTP Client</protocolAndType> + <name type="str">newClientActivity1</name> + <enable type="bool">True</enable> + <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> + <name type="str">Timeline1</name> + <iterationTime type="int">620</iterationTime> + <totalTime type="int">620</totalTime> + <iterations type="int">1</iterations> + <standbyTime type="int">0</standbyTime> + <offlineTime type="int">0</offlineTime> + <sustainTime type="int">600</sustainTime> + <rampUpType type="int">0</rampUpType> + <rampUpValue type="int">30000</rampUpValue> + <rampUpInterval type="int">1</rampUpInterval> + <rampUpTime type="int">0</rampUpTime> + <rampDownTime type="int">20</rampDownTime> + <rampDownValue type="int">32000</rampDownValue> + <timelineType type="int">0</timelineType> + <objectID type="int">0</objectID> + </timeline> + <customParameters type="NoneType">None</customParameters> + <role type="str">Client</role> + <activeRole type="str">Client</activeRole> + <objectivePercent type="float">100.0</objectivePercent> + <objectiveType type="str">connectionRate</objectiveType> + <objectiveValue type="int">375000</objectiveValue> + <userObjectiveType type="str">connectionRate</userObjectiveType> + <userObjectiveValue type="long">375000</userObjectiveValue> + <constraintType type="str">SimulatedUserConstraint</constraintType> + <constraintValue type="int">100</constraintValue> + <timerGranularity type="int">100</timerGranularity> + <enableConstraint type="bool">False</enableConstraint> + <secondaryConstraintType type="str">SimulatedUserConstraint</secondaryConstraintType> + <secondaryConstraintValue type="int">100</secondaryConstraintValue> + <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> + <portMapPolicy type="str">portMesh</portMapPolicy> + <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> + <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> + <userIpMapping type="str">1:1</userIpMapping> + <destinationIpMapping type="str">Consecutive</destinationIpMapping> + <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12954</_apiUniqueId> + <_objectiveValue type="int">375000</_objectiveValue> + <timelineScale type="float">1.0</timelineScale> + </item> + </activityParameters> + <timeline ref="15"/> + <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> + <captureViewOptions ref="8"/> + <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> + <filterString type="str"></filterString> + </filter> + <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> + <enable type="bool">False</enable> + <_apiUniqueId type="int">12940</_apiUniqueId> + </communityCapture> + <payload type="NoneType">None</payload> + <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring"> + <rangeAgentConnections type="list"/> + <_apiUniqueId type="int">12926</_apiUniqueId> + <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"> + <item type="tuple"> + <item ref="11"/> + <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> + <range ref="11"/> + <agentEndpointConnections type="list"/> + <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"> + <item type="tuple"> + <item ref="14"/> + <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> + <agent ref="14"/> + <endpoints type="list"/> + <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> + <_dict type="list"> + <item type="tuple"> + <item type="str">HTTP Client</item> + <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> + <endpointName type="str">HTTP Client</endpointName> + <isAvailable type="bool">True</isAvailable> + </item> + </item> + </_dict> + </endpointsDict> + </item> + </item> + </_dict> + </agentConnectionsDict> + </item> + </item> + </_dict> + </rangeAgentDict> + </activityIpWiring> + <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> + <iterations type="int">1</iterations> + <standbyTime type="int">0</standbyTime> + <offlineTime type="int">0</offlineTime> + <sustainTime type="int">600</sustainTime> + <iterationTime type="int">620</iterationTime> + <totalTime type="int">620</totalTime> + <portMapPolicy type="str">portPairs</portMapPolicy> + <objectiveType type="str">connectionRate</objectiveType> + <objectiveValue type="int">375000</objectiveValue> + <rampUpType type="int">-1</rampUpType> + <rampUpValue type="int">30000</rampUpValue> + <rampUpInterval type="int">1</rampUpInterval> + <rampUpTime type="int">0</rampUpTime> + <rampDownTime type="int">20</rampDownTime> + <userObjectiveType type="str">connectionRate</userObjectiveType> + <userObjectiveValue type="long">375000</userObjectiveValue> + <totalUserObjectiveValue type="long">375000</totalUserObjectiveValue> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12925</_apiUniqueId> + <isVisible type="bool">True</isVisible> + <activityIpWiring ref="16"/> + <_portOperationModesAllowed type="dict"> + <item> + <key type="int">0</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">1</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">2</key> + <value type="bool">False</value> + </item> + <item> + <key type="int">3</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">4</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">8</key> + <value type="bool">True</value> + </item> + </_portOperationModesAllowed> + <_tcpAccelerationAllowed type="dict"> + <item> + <key type="int">0</key> + <value type="bool">True</value> + </item> + <item> + <key type="int">1</key> + <value type="bool">False</value> + </item> + </_tcpAccelerationAllowed> + </item> + </elementList> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12922</_apiUniqueId> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> + <name type="str">DUT</name> + <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/> + <objectID type="int">1</objectID> + <_apiUniqueId type="int">12923</_apiUniqueId> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> + <name type="str">Server</name> + <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> + <item ref="17"/> + </elementList> + <objectID type="int">2</objectID> + <_apiUniqueId type="int">12924</_apiUniqueId> + </item> + </columnList> + <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/> + <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12921</_apiUniqueId> + </item> + </scenarioList> + <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> + <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics> + <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig> + <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops> + <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun> + <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging> + <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats> + <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats> + <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported> + <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits> + <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/> + <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective> + <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings"> + <disabledEventClasses type="str"></disabledEventClasses> + <disabledPorts type="str"></disabledPorts> + <_apiUniqueId type="int">12990</_apiUniqueId> + </eventHandlerSettings> + <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes> + <networkProtocolOptions type="NoneType">None</networkProtocolOptions> + <seedForRandomBehavior type="int">0</seedForRandomBehavior> + <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor> + <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor> + <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory"> + <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory"> + <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> + <name type="str">Playlist</name> + <categoryId type="str">playlist</categoryId> + <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/> + <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <objectID type="int">0</objectID> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> + <name type="str">Random Data</name> + <categoryId type="str">rdge</categoryId> + <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory"> + <startcore type="int">0</startcore> + <totalcores type="int">1</totalcores> + </pm> + <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <objectID type="int">1</objectID> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> + <name type="str">Real File</name> + <categoryId type="str">realfile</categoryId> + <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <pm type="NoneType">None</pm> + <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <objectID type="int">2</objectID> + </item> + <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> + <name type="str">Unified File System</name> + <categoryId type="str">ufs</categoryId> + <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <pm type="NoneType">None</pm> + <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> + <objectID type="int">3</objectID> + </item> + </categoryList> + <_profileMru type="str"></_profileMru> + </profileDirectory> + <communityList type="NoneType">None</communityList> + <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest> + <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion> + <objectID type="int">0</objectID> + <_apiUniqueId type="int">12920</_apiUniqueId> + <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration> + <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions"> + <pollingInterval type="int">2</pollingInterval> + <allowCsvLogging type="bool">False</allowCsvLogging> + <enableDataStore type="bool">False</enableDataStore> + <svConfiguration type="str">begin 666 <data> M>)RE6&MSXC84_2L>.LVTT_K-*X1D)P&R898$!K-I9YK.CK %T:ZQO9+,HYW^ M]U[)QAACDTS[81=9Y]RK*^GHZBK=#]N5KZPQ920,KFNF9M0^W'0=CO@SP1M, M#U!3:QJ:H=E&LP8$S$3OB#"N?,*[ZQJ*.-D2I+&U%@D+QG'@8BW'^XVB"" P M[HV?9H.GF:+?="?3@0/-V]EP_%3\_C+H#V>W=Z.! 'KCQ[OATZ"?#<VRUGL" M.!G\IGM/\?<8.#MEC?P87]>LFAR(K4?A<DF"Y;[_'OD,2VQ&5MC9!>X=?D5K M$M(]P\A0QM$JFE#L$AE9BML2'RPI!".6=;:+\!XS)3:&9?9#Y$UHR+'+<[8S M&N-"8 _$\W @'+'3& <!FONXCSAR>$CQ*6%R6)U\'/4RZ[,C04#CF$<QSU;R M,?8YB?SBW"2I[[Q!>T1;(3L&\?5BQL/51]BSUXS3W(]Y3WP\03Q#9/^MCREG M^U\%-!VPSI:1Z]HKYU%'US>;C;:QM9 N=<LP3/WWQY'CON(54DD FP:+4<NL MO+>MY*#Z?M0^7B"8DURGXR]).X9[-$Q50#$&M/ ]11X)/](PC@H "?B-U=7% M3U>O9/5\@@-^'])5[",'<PYZR?;N[XL?MOTK^._VZN)['/*KY^1P)Q^=Y,?4 M&DGCUQ.VF$#*_>, _GEH_G-H)D<"#L0T#HIQ7/C\ZBCO[$<VDH8"*@D]L$B! MF"]4LYFT/UPL^54N,G"5CC(,%J&#*4$^^0N)(W2'ECDE).;OED,:R4$3[[-/ M6,<Q*HJ(<O6%IZL!*B<NG/2(%7D)4\SG":VP0$7;%)UZOK?<IH<X7H9T)QCB M".L/L]DDL\VCI_:]Q7)_L 2AUWDA6Y&07H0/M1<&09*6V!=K$H+H-;I=2-<% MP_+(,-U'[K'#; Z]IU;]6$Y6T2OAATVJWC,<YRV."&,\_RKFML;L'.N!+%]] M^,<K65EBY4-(FIPL"*:"Z7IN8SYW/;6!W;E:-R_GZMPRL6JV6H:!+<^T[(9< MDRH'IT.!BO("@4_3;#2EDQQT:O>98>H,^P)T5%-MJ):I6D;#,DW3-BS5M%K0 M-HR6"<>M7J]?FI=V2VW;C6:[+IWG[$N# FE3CKUQ(!B68;95$P9HS4RK4Z]W M&I=:JVW46RW[%\/H&,8^WB.K"K\A7-_ 4. D=P+BIZ>1P^68'M2*34GRX2-R M7TF ]POC#$?/D]'ST)GV'2/18RGO#7>WGB=N=,$T#<VR6QHLI&;:]L%N@=M& MIV/74;W3;-M&!\V]1L>RVS^:UG$.TZL\G\8PW#YAO@GIMWWV!E8;ZC(--*"9 M#4NZ*R.=<37%/D9,3GJX'<&Y5]J::2B#VV-G.=H99[DD EEN2=%*$2F"*3]M MV\V?7X90IKTDH[R(N-7!K?HY\B ]%4*OSBG#[11'D(8PS4W/UEJB0&VT4R\E ME/*C_?G1<9&/DWU,95GH/S5TUCGXTQQRN3 [ZBV5LBQ=3L0JC=]S0^1N$LR@ MJ&#C2*;E"KF&O@^Y3=1Y\E+ ',%&>(G@CK%*XQ%&-,">N%T%;R'JO[R# E[I MY]X/-[)B8:5NCN%*+Y C!5-6BH(H,T#.31$_YRA]&YSS5:14NX/"/71#?QB MXA;(Q>4>2UF53J=AS/$4!<MR;P6XS,TJ$GEDELFEN/1E>)4NS^HMT:6W"X1J MX4%6<DL>49Y%)7A"RHY>13DGV$GIG3WC_L,+,JO,Q0LF\'?RVQ0=(Q)\P]ZA M<C_8Z*D2#BU6BHN7[DU7"ED)X!JYKDEOM=P3NW:,)X^=FA)2#U/Y&$(N"(.- M\!K[^U>I+BW@R1NLHO/O72"D=81\U.0>O *"0FY!EC%%^2>F6'4&H N@W(_T M>XUH$F-RQ0K[]+)%LEXZO80]S%Q*I$)2,%</@U>XW'RXV?;EF-CM=*#\N!Y> 9OV&08^CYR/^O-J2YF*?XR?X&<O,OY+*?^ end </svConfiguration> + <svRestConfiguration type="str">(dp1 S'HTTP Server Per URL' p2 ccopy_reg _reconstructor p3 (cLib.Rest.ixPersistentStatSource ixConfiguredStatsList p4 c__builtin__ list p5 (lp6 g3 (cLib.Rest.ixPersistentStatSource ixConfiguredStat p7 c__builtin__ object p8 NtRp9 (dp10 S'proxyPropertyList' p11 NsS'_objectID' p12 I0 sS'enabled' p13 I01 sS'filterList' p14 g3 (cLib.Rest.ixPersistentStatSource ixRestFilters p15 g8 NtRp16 (dp17 S'cardFilters' p18 g3 (cLib.Rest.ixPersistentStatSource ixCardFilterList p19 g5 (ltRp20 (dp21 g12 I-1 sS'_resourceLocked' p22 I00 sg11 NsbsS'activityFilters' p23 g3 (cLib.Rest.ixPersistentStatSource ixActivityFilterList p24 g5 (ltRp25 (dp26 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sS'chassisFilters' p27 g3 (cLib.Rest.ixPersistentStatSource ixChassisFilterList p28 g5 (ltRp29 (dp30 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sS'portFilters' p31 g3 (cLib.Rest.ixPersistentStatSource ixPortFilterList p32 g5 (ltRp33 (dp34 g12 I-1 sg22 I00 sg11 NsbsbsS'caption' p35 S'HTTP Requests Received' p36 sg22 I00 sS'aggregationType' p37 S'kSum' p38 sS'statName' p39 g36 sbag3 (g7 g8 NtRp40 (dp41 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp42 (dp43 g18 g3 (g19 g5 (ltRp44 (dp45 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp46 (dp47 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp48 (dp49 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp50 (dp51 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp53 (dp54 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp55 (dp56 g18 g3 (g19 g5 (ltRp57 (dp58 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp59 (dp60 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp61 (dp62 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp63 (dp64 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp66 (dp67 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp68 (dp69 g18 g3 (g19 g5 (ltRp70 (dp71 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp72 (dp73 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp74 (dp75 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp76 (dp77 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (50x)' p78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp79 (dp80 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp81 (dp82 g18 g3 (g19 g5 (ltRp83 (dp84 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp85 (dp86 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp87 (dp88 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp89 (dp90 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write Error)' p91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp92 (dp93 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp94 (dp95 g18 g3 (g19 g5 (ltRp96 (dp97 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp98 (dp99 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp100 (dp101 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp102 (dp103 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent' p104 sg22 I00 sg37 g38 sg39 g104 sbag3 (g7 g8 NtRp105 (dp106 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp107 (dp108 g18 g3 (g19 g5 (ltRp109 (dp110 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp111 (dp112 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp113 (dp114 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp115 (dp116 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (1xx)' p117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp118 (dp119 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp120 (dp121 g18 g3 (g19 g5 (ltRp122 (dp123 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp124 (dp125 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp126 (dp127 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp128 (dp129 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (2xx)' p130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp131 (dp132 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp133 (dp134 g18 g3 (g19 g5 (ltRp135 (dp136 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp137 (dp138 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp139 (dp140 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp141 (dp142 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (3xx)' p143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp144 (dp145 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp146 (dp147 g18 g3 (g19 g5 (ltRp148 (dp149 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp150 (dp151 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp152 (dp153 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp154 (dp155 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (4xx)' p156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp157 (dp158 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp159 (dp160 g18 g3 (g19 g5 (ltRp161 (dp162 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp163 (dp164 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp165 (dp166 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp167 (dp168 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (5xx)' p169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp170 (dp171 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp172 (dp173 g18 g3 (g19 g5 (ltRp174 (dp175 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp176 (dp177 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp178 (dp179 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp180 (dp181 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (Other)' p182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp183 (dp184 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp185 (dp186 g18 g3 (g19 g5 (ltRp187 (dp188 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp189 (dp190 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp191 (dp192 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp193 (dp194 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Write Error)' p195 sg22 I00 sg37 g38 sg39 g195 sbag3 (g7 g8 NtRp196 (dp197 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp198 (dp199 g18 g3 (g19 g5 (ltRp200 (dp201 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp202 (dp203 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp204 (dp205 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp206 (dp207 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Aborted)' p208 sg22 I00 sg37 g38 sg39 g208 sbag3 (g7 g8 NtRp209 (dp210 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp211 (dp212 g18 g3 (g19 g5 (ltRp213 (dp214 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp215 (dp216 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp217 (dp218 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp219 (dp220 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Other)' p221 sg22 I00 sg37 g38 sg39 g221 sbag3 (g7 g8 NtRp222 (dp223 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp224 (dp225 g18 g3 (g19 g5 (ltRp226 (dp227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp228 (dp229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp230 (dp231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp232 (dp233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Sent' p234 sg22 I00 sg37 g38 sg39 g234 sbag3 (g7 g8 NtRp235 (dp236 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp237 (dp238 g18 g3 (g19 g5 (ltRp239 (dp240 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp241 (dp242 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp243 (dp244 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp245 (dp246 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp248 (dp249 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp250 (dp251 g18 g3 (g19 g5 (ltRp252 (dp253 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp254 (dp255 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp256 (dp257 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp258 (dp259 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p260 sg22 I00 sg37 S'kWeightedAverage' p261 sg39 g260 sbag3 (g7 g8 NtRp262 (dp263 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp264 (dp265 g18 g3 (g19 g5 (ltRp266 (dp267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp268 (dp269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp270 (dp271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp272 (dp273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p274 sg22 I00 sg37 g261 sg39 g274 sbag3 (g7 g8 NtRp275 (dp276 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp277 (dp278 g18 g3 (g19 g5 (ltRp279 (dp280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp281 (dp282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp283 (dp284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp285 (dp286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Received' p287 sg22 I00 sg37 g38 sg39 g287 sbag3 (g7 g8 NtRp288 (dp289 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp290 (dp291 g18 g3 (g19 g5 (ltRp292 (dp293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp294 (dp295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp296 (dp297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp298 (dp299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp301 (dp302 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp303 (dp304 g18 g3 (g19 g5 (ltRp305 (dp306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp307 (dp308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp309 (dp310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp311 (dp312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Received Chunk Size' p313 sg22 I00 sg37 g261 sg39 g313 sbag3 (g7 g8 NtRp314 (dp315 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp316 (dp317 g18 g3 (g19 g5 (ltRp318 (dp319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp320 (dp321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp322 (dp323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp324 (dp325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p326 sg22 I00 sg37 g261 sg39 g326 sbag3 (g7 g8 NtRp327 (dp328 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp329 (dp330 g18 g3 (g19 g5 (ltRp331 (dp332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp333 (dp334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp335 (dp336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp337 (dp338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Received' p339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp340 (dp341 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp342 (dp343 g18 g3 (g19 g5 (ltRp344 (dp345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp346 (dp347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp348 (dp349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp350 (dp351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Successful' p352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp353 (dp354 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp355 (dp356 g18 g3 (g19 g5 (ltRp357 (dp358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp359 (dp360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp361 (dp362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp363 (dp364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Failed' p365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp366 (dp367 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp368 (dp369 g18 g3 (g19 g5 (ltRp370 (dp371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp372 (dp373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp374 (dp375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp376 (dp377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Request Received' p378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp379 (dp380 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp381 (dp382 g18 g3 (g19 g5 (ltRp383 (dp384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp385 (dp386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp387 (dp388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp389 (dp390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Response Sent' p391 sg22 I00 sg37 g38 sg39 g391 sbatRp392 (dp393 g12 I27 sg22 I00 sg11 NsbsS'HTTP Server' p394 g3 (g4 g5 (lp395 g3 (g7 g8 NtRp396 (dp397 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp398 (dp399 g18 g3 (g19 g5 (ltRp400 (dp401 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp402 (dp403 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp404 (dp405 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp406 (dp407 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g36 sg22 I00 sg37 g38 sg39 g36 sbag3 (g7 g8 NtRp408 (dp409 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp410 (dp411 g18 g3 (g19 g5 (ltRp412 (dp413 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp414 (dp415 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp416 (dp417 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp418 (dp419 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp420 (dp421 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp422 (dp423 g18 g3 (g19 g5 (ltRp424 (dp425 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp426 (dp427 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp428 (dp429 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp430 (dp431 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p432 sg22 I00 sg37 g38 sg39 g432 sbag3 (g7 g8 NtRp433 (dp434 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp435 (dp436 g18 g3 (g19 g5 (ltRp437 (dp438 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp439 (dp440 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp441 (dp442 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp443 (dp444 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp445 (dp446 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp447 (dp448 g18 g3 (g19 g5 (ltRp449 (dp450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp451 (dp452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp453 (dp454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp455 (dp456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp457 (dp458 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp459 (dp460 g18 g3 (g19 g5 (ltRp461 (dp462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp463 (dp464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp465 (dp466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp467 (dp468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp469 (dp470 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp471 (dp472 g18 g3 (g19 g5 (ltRp473 (dp474 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp475 (dp476 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp477 (dp478 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp479 (dp480 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p481 sg22 I00 sg37 g38 sg39 g481 sbag3 (g7 g8 NtRp482 (dp483 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp484 (dp485 g18 g3 (g19 g5 (ltRp486 (dp487 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp488 (dp489 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp490 (dp491 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp492 (dp493 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p494 sg22 I00 sg37 g38 sg39 g494 sbag3 (g7 g8 NtRp495 (dp496 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp497 (dp498 g18 g3 (g19 g5 (ltRp499 (dp500 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp501 (dp502 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp503 (dp504 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp505 (dp506 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p507 sg22 I00 sg37 g38 sg39 g507 sbag3 (g7 g8 NtRp508 (dp509 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp510 (dp511 g18 g3 (g19 g5 (ltRp512 (dp513 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp514 (dp515 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp516 (dp517 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp518 (dp519 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp520 (dp521 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp522 (dp523 g18 g3 (g19 g5 (ltRp524 (dp525 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp526 (dp527 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp528 (dp529 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp530 (dp531 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp532 (dp533 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp534 (dp535 g18 g3 (g19 g5 (ltRp536 (dp537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp538 (dp539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp540 (dp541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp542 (dp543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp544 (dp545 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp546 (dp547 g18 g3 (g19 g5 (ltRp548 (dp549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp550 (dp551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp552 (dp553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp554 (dp555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp556 (dp557 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp558 (dp559 g18 g3 (g19 g5 (ltRp560 (dp561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp562 (dp563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp564 (dp565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp566 (dp567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp568 (dp569 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp570 (dp571 g18 g3 (g19 g5 (ltRp572 (dp573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp574 (dp575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp576 (dp577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp578 (dp579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp580 (dp581 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp582 (dp583 g18 g3 (g19 g5 (ltRp584 (dp585 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp586 (dp587 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp588 (dp589 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp590 (dp591 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p592 sg22 I00 sg37 g38 sg39 g592 sbag3 (g7 g8 NtRp593 (dp594 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp595 (dp596 g18 g3 (g19 g5 (ltRp597 (dp598 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp599 (dp600 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp601 (dp602 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp603 (dp604 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p605 sg22 I00 sg37 g38 sg39 g605 sbag3 (g7 g8 NtRp606 (dp607 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp608 (dp609 g18 g3 (g19 g5 (ltRp610 (dp611 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp612 (dp613 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp614 (dp615 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp616 (dp617 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p618 sg22 I00 sg37 g38 sg39 g618 sbag3 (g7 g8 NtRp619 (dp620 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp621 (dp622 g18 g3 (g19 g5 (ltRp623 (dp624 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp625 (dp626 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp627 (dp628 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp629 (dp630 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p631 sg22 I00 sg37 g38 sg39 g631 sbag3 (g7 g8 NtRp632 (dp633 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp634 (dp635 g18 g3 (g19 g5 (ltRp636 (dp637 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp638 (dp639 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp640 (dp641 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp642 (dp643 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p644 sg22 I00 sg37 g38 sg39 g644 sbag3 (g7 g8 NtRp645 (dp646 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp647 (dp648 g18 g3 (g19 g5 (ltRp649 (dp650 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp651 (dp652 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp653 (dp654 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp655 (dp656 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p657 sg22 I00 sg37 g38 sg39 g657 sbag3 (g7 g8 NtRp658 (dp659 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp660 (dp661 g18 g3 (g19 g5 (ltRp662 (dp663 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp664 (dp665 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp666 (dp667 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp668 (dp669 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Matching ServerID' p670 sg22 I00 sg37 g38 sg39 g670 sbag3 (g7 g8 NtRp671 (dp672 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp673 (dp674 g18 g3 (g19 g5 (ltRp675 (dp676 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp677 (dp678 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp679 (dp680 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp681 (dp682 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Non-matching ServerID' p683 sg22 I00 sg37 g38 sg39 g683 sbag3 (g7 g8 NtRp684 (dp685 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp686 (dp687 g18 g3 (g19 g5 (ltRp688 (dp689 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp690 (dp691 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp692 (dp693 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp694 (dp695 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Encoded Responses Sent' p696 sg22 I00 sg37 g38 sg39 g696 sbag3 (g7 g8 NtRp697 (dp698 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp699 (dp700 g18 g3 (g19 g5 (ltRp701 (dp702 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp703 (dp704 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp705 (dp706 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp707 (dp708 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp709 (dp710 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp711 (dp712 g18 g3 (g19 g5 (ltRp713 (dp714 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp715 (dp716 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp717 (dp718 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp719 (dp720 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Transfer-Encoded Requests Received' p721 sg22 I00 sg37 g38 sg39 g721 sbag3 (g7 g8 NtRp722 (dp723 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp724 (dp725 g18 g3 (g19 g5 (ltRp726 (dp727 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp728 (dp729 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp730 (dp731 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp732 (dp733 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp734 (dp735 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp736 (dp737 g18 g3 (g19 g5 (ltRp738 (dp739 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp740 (dp741 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp742 (dp743 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp744 (dp745 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp746 (dp747 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp748 (dp749 g18 g3 (g19 g5 (ltRp750 (dp751 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp752 (dp753 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp754 (dp755 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp756 (dp757 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp758 (dp759 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp760 (dp761 g18 g3 (g19 g5 (ltRp762 (dp763 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp764 (dp765 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp766 (dp767 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp768 (dp769 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp770 (dp771 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp772 (dp773 g18 g3 (g19 g5 (ltRp774 (dp775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp776 (dp777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp778 (dp779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp780 (dp781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp782 (dp783 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp784 (dp785 g18 g3 (g19 g5 (ltRp786 (dp787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp788 (dp789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp790 (dp791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp792 (dp793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g391 sg22 I00 sg37 g38 sg39 g391 sbag3 (g7 g8 NtRp794 (dp795 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp796 (dp797 g18 g3 (g19 g5 (ltRp798 (dp799 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp800 (dp801 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp802 (dp803 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp804 (dp805 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Sent' p806 sg22 I00 sg37 g38 sg39 g806 sbag3 (g7 g8 NtRp807 (dp808 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp809 (dp810 g18 g3 (g19 g5 (ltRp811 (dp812 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp813 (dp814 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp815 (dp816 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp817 (dp818 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Sent' p819 sg22 I00 sg37 g38 sg39 g819 sbag3 (g7 g8 NtRp820 (dp821 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp822 (dp823 g18 g3 (g19 g5 (ltRp824 (dp825 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp826 (dp827 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp828 (dp829 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp830 (dp831 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Sent' p832 sg22 I00 sg37 g38 sg39 g832 sbag3 (g7 g8 NtRp833 (dp834 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp835 (dp836 g18 g3 (g19 g5 (ltRp837 (dp838 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp839 (dp840 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp841 (dp842 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp843 (dp844 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Sent' p845 sg22 I00 sg37 g38 sg39 g845 sbag3 (g7 g8 NtRp846 (dp847 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp848 (dp849 g18 g3 (g19 g5 (ltRp850 (dp851 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp852 (dp853 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp854 (dp855 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp856 (dp857 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Sent' p858 sg22 I00 sg37 g38 sg39 g858 sbag3 (g7 g8 NtRp859 (dp860 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp861 (dp862 g18 g3 (g19 g5 (ltRp863 (dp864 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp865 (dp866 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp867 (dp868 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp869 (dp870 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Sent' p871 sg22 I00 sg37 g38 sg39 g871 sbag3 (g7 g8 NtRp872 (dp873 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp874 (dp875 g18 g3 (g19 g5 (ltRp876 (dp877 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp878 (dp879 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp880 (dp881 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp882 (dp883 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Sent' p884 sg22 I00 sg37 g38 sg39 g884 sbag3 (g7 g8 NtRp885 (dp886 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp887 (dp888 g18 g3 (g19 g5 (ltRp889 (dp890 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp891 (dp892 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp893 (dp894 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp895 (dp896 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Sent' p897 sg22 I00 sg37 g38 sg39 g897 sbag3 (g7 g8 NtRp898 (dp899 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp900 (dp901 g18 g3 (g19 g5 (ltRp902 (dp903 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp904 (dp905 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp906 (dp907 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp908 (dp909 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Sent' p910 sg22 I00 sg37 g38 sg39 g910 sbag3 (g7 g8 NtRp911 (dp912 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp913 (dp914 g18 g3 (g19 g5 (ltRp915 (dp916 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp917 (dp918 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp919 (dp920 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp921 (dp922 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Sent' p923 sg22 I00 sg37 g38 sg39 g923 sbag3 (g7 g8 NtRp924 (dp925 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp926 (dp927 g18 g3 (g19 g5 (ltRp928 (dp929 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp930 (dp931 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp932 (dp933 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp934 (dp935 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Received' p936 sg22 I00 sg37 g38 sg39 g936 sbag3 (g7 g8 NtRp937 (dp938 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp939 (dp940 g18 g3 (g19 g5 (ltRp941 (dp942 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp943 (dp944 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp945 (dp946 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp947 (dp948 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Received' p949 sg22 I00 sg37 g38 sg39 g949 sbag3 (g7 g8 NtRp950 (dp951 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp952 (dp953 g18 g3 (g19 g5 (ltRp954 (dp955 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp956 (dp957 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp958 (dp959 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp960 (dp961 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Received' p962 sg22 I00 sg37 g38 sg39 g962 sbag3 (g7 g8 NtRp963 (dp964 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp965 (dp966 g18 g3 (g19 g5 (ltRp967 (dp968 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp969 (dp970 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp971 (dp972 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp973 (dp974 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Received' p975 sg22 I00 sg37 g38 sg39 g975 sbag3 (g7 g8 NtRp976 (dp977 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp978 (dp979 g18 g3 (g19 g5 (ltRp980 (dp981 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp982 (dp983 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp984 (dp985 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp986 (dp987 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Received' p988 sg22 I00 sg37 g38 sg39 g988 sbag3 (g7 g8 NtRp989 (dp990 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp991 (dp992 g18 g3 (g19 g5 (ltRp993 (dp994 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp995 (dp996 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp997 (dp998 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp999 (dp1000 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Received' p1001 sg22 I00 sg37 g38 sg39 g1001 sbag3 (g7 g8 NtRp1002 (dp1003 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp1004 (dp1005 g18 g3 (g19 g5 (ltRp1006 (dp1007 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1008 (dp1009 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1010 (dp1011 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1012 (dp1013 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Received' p1014 sg22 I00 sg37 g38 sg39 g1014 sbag3 (g7 g8 NtRp1015 (dp1016 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp1017 (dp1018 g18 g3 (g19 g5 (ltRp1019 (dp1020 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1021 (dp1022 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1023 (dp1024 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1025 (dp1026 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Received' p1027 sg22 I00 sg37 g38 sg39 g1027 sbag3 (g7 g8 NtRp1028 (dp1029 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp1030 (dp1031 g18 g3 (g19 g5 (ltRp1032 (dp1033 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1034 (dp1035 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1036 (dp1037 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1038 (dp1039 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Received' p1040 sg22 I00 sg37 g38 sg39 g1040 sbag3 (g7 g8 NtRp1041 (dp1042 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp1043 (dp1044 g18 g3 (g19 g5 (ltRp1045 (dp1046 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1047 (dp1048 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1049 (dp1050 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1051 (dp1052 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Received' p1053 sg22 I00 sg37 g38 sg39 g1053 sbag3 (g7 g8 NtRp1054 (dp1055 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp1056 (dp1057 g18 g3 (g19 g5 (ltRp1058 (dp1059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1060 (dp1061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1062 (dp1063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1064 (dp1065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Client' p1066 sg22 I00 sg37 g38 sg39 g1066 sbag3 (g7 g8 NtRp1067 (dp1068 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp1069 (dp1070 g18 g3 (g19 g5 (ltRp1071 (dp1072 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1073 (dp1074 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1075 (dp1076 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1077 (dp1078 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Server' p1079 sg22 I00 sg37 g38 sg39 g1079 sbag3 (g7 g8 NtRp1080 (dp1081 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp1082 (dp1083 g18 g3 (g19 g5 (ltRp1084 (dp1085 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1086 (dp1087 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1088 (dp1089 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1090 (dp1091 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Client to Server' p1092 sg22 I00 sg37 g38 sg39 g1092 sbag3 (g7 g8 NtRp1093 (dp1094 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp1095 (dp1096 g18 g3 (g19 g5 (ltRp1097 (dp1098 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1099 (dp1100 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1101 (dp1102 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1103 (dp1104 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Server to Client' p1105 sg22 I00 sg37 g38 sg39 g1105 sbag3 (g7 g8 NtRp1106 (dp1107 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp1108 (dp1109 g18 g3 (g19 g5 (ltRp1110 (dp1111 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1112 (dp1113 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1114 (dp1115 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1116 (dp1117 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Client to Server' p1118 sg22 I00 sg37 g38 sg39 g1118 sbag3 (g7 g8 NtRp1119 (dp1120 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp1121 (dp1122 g18 g3 (g19 g5 (ltRp1123 (dp1124 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1125 (dp1126 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1127 (dp1128 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1129 (dp1130 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Server to Client' p1131 sg22 I00 sg37 g38 sg39 g1131 sbag3 (g7 g8 NtRp1132 (dp1133 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp1134 (dp1135 g18 g3 (g19 g5 (ltRp1136 (dp1137 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1138 (dp1139 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1140 (dp1141 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1142 (dp1143 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Succeeded' p1144 sg22 I00 sg37 g38 sg39 g1144 sbag3 (g7 g8 NtRp1145 (dp1146 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp1147 (dp1148 g18 g3 (g19 g5 (ltRp1149 (dp1150 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1151 (dp1152 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1153 (dp1154 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1155 (dp1156 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Failed' p1157 sg22 I00 sg37 g38 sg39 g1157 sbag3 (g7 g8 NtRp1158 (dp1159 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp1160 (dp1161 g18 g3 (g19 g5 (ltRp1162 (dp1163 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1164 (dp1165 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1166 (dp1167 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1168 (dp1169 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Protocol Error' p1170 sg22 I00 sg37 g38 sg39 g1170 sbag3 (g7 g8 NtRp1171 (dp1172 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp1173 (dp1174 g18 g3 (g19 g5 (ltRp1175 (dp1176 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1177 (dp1178 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1179 (dp1180 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1181 (dp1182 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Internal Error' p1183 sg22 I00 sg37 g38 sg39 g1183 sbag3 (g7 g8 NtRp1184 (dp1185 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp1186 (dp1187 g18 g3 (g19 g5 (ltRp1188 (dp1189 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1190 (dp1191 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1192 (dp1193 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1194 (dp1195 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Flow Control Error' p1196 sg22 I00 sg37 g38 sg39 g1196 sbag3 (g7 g8 NtRp1197 (dp1198 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp1199 (dp1200 g18 g3 (g19 g5 (ltRp1201 (dp1202 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1203 (dp1204 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1205 (dp1206 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1207 (dp1208 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Settings Timeout Error' p1209 sg22 I00 sg37 g38 sg39 g1209 sbag3 (g7 g8 NtRp1210 (dp1211 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp1212 (dp1213 g18 g3 (g19 g5 (ltRp1214 (dp1215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1216 (dp1217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1218 (dp1219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1220 (dp1221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Closed Error' p1222 sg22 I00 sg37 g38 sg39 g1222 sbag3 (g7 g8 NtRp1223 (dp1224 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp1225 (dp1226 g18 g3 (g19 g5 (ltRp1227 (dp1228 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1229 (dp1230 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1231 (dp1232 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1233 (dp1234 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Frame Size Error' p1235 sg22 I00 sg37 g38 sg39 g1235 sbag3 (g7 g8 NtRp1236 (dp1237 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp1238 (dp1239 g18 g3 (g19 g5 (ltRp1240 (dp1241 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1242 (dp1243 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1244 (dp1245 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1246 (dp1247 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Refused Stream Error' p1248 sg22 I00 sg37 g38 sg39 g1248 sbag3 (g7 g8 NtRp1249 (dp1250 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp1251 (dp1252 g18 g3 (g19 g5 (ltRp1253 (dp1254 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1255 (dp1256 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1257 (dp1258 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1259 (dp1260 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Cancelled Error' p1261 sg22 I00 sg37 g38 sg39 g1261 sbag3 (g7 g8 NtRp1262 (dp1263 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp1264 (dp1265 g18 g3 (g19 g5 (ltRp1266 (dp1267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1268 (dp1269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1270 (dp1271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1272 (dp1273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Compression Error' p1274 sg22 I00 sg37 g38 sg39 g1274 sbag3 (g7 g8 NtRp1275 (dp1276 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp1277 (dp1278 g18 g3 (g19 g5 (ltRp1279 (dp1280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1281 (dp1282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1283 (dp1284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1285 (dp1286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connect Error' p1287 sg22 I00 sg37 g38 sg39 g1287 sbag3 (g7 g8 NtRp1288 (dp1289 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp1290 (dp1291 g18 g3 (g19 g5 (ltRp1292 (dp1293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1294 (dp1295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1296 (dp1297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1298 (dp1299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Enhance Calm Error' p1300 sg22 I00 sg37 g38 sg39 g1300 sbag3 (g7 g8 NtRp1301 (dp1302 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp1303 (dp1304 g18 g3 (g19 g5 (ltRp1305 (dp1306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1307 (dp1308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1309 (dp1310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1311 (dp1312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Inadequate Security Error' p1313 sg22 I00 sg37 g38 sg39 g1313 sbag3 (g7 g8 NtRp1314 (dp1315 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp1316 (dp1317 g18 g3 (g19 g5 (ltRp1318 (dp1319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1320 (dp1321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1322 (dp1323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1324 (dp1325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HTTP1.1 Required Error' p1326 sg22 I00 sg37 g38 sg39 g1326 sbag3 (g7 g8 NtRp1327 (dp1328 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp1329 (dp1330 g18 g3 (g19 g5 (ltRp1331 (dp1332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1333 (dp1334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1335 (dp1336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1337 (dp1338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p1339 sg22 I00 sg37 g38 sg39 g1339 sbag3 (g7 g8 NtRp1340 (dp1341 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp1342 (dp1343 g18 g3 (g19 g5 (ltRp1344 (dp1345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1346 (dp1347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1348 (dp1349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1350 (dp1351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p1352 sg22 I00 sg37 g38 sg39 g1352 sbag3 (g7 g8 NtRp1353 (dp1354 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp1355 (dp1356 g18 g3 (g19 g5 (ltRp1357 (dp1358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1359 (dp1360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1361 (dp1362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1363 (dp1364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p1365 sg22 I00 sg37 g38 sg39 g1365 sbag3 (g7 g8 NtRp1366 (dp1367 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp1368 (dp1369 g18 g3 (g19 g5 (ltRp1370 (dp1371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1372 (dp1373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1374 (dp1375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1376 (dp1377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p1378 sg22 I00 sg37 g38 sg39 g1378 sbag3 (g7 g8 NtRp1379 (dp1380 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp1381 (dp1382 g18 g3 (g19 g5 (ltRp1383 (dp1384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1385 (dp1386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1387 (dp1388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1389 (dp1390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p1391 sg22 I00 sg37 g38 sg39 g1391 sbag3 (g7 g8 NtRp1392 (dp1393 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp1394 (dp1395 g18 g3 (g19 g5 (ltRp1396 (dp1397 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1398 (dp1399 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1400 (dp1401 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1402 (dp1403 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p1404 sg22 I00 sg37 g38 sg39 g1404 sbag3 (g7 g8 NtRp1405 (dp1406 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp1407 (dp1408 g18 g3 (g19 g5 (ltRp1409 (dp1410 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1411 (dp1412 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1413 (dp1414 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1415 (dp1416 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p1417 sg22 I00 sg37 g38 sg39 g1417 sbag3 (g7 g8 NtRp1418 (dp1419 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp1420 (dp1421 g18 g3 (g19 g5 (ltRp1422 (dp1423 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1424 (dp1425 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1426 (dp1427 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1428 (dp1429 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p1430 sg22 I00 sg37 g38 sg39 g1430 sbag3 (g7 g8 NtRp1431 (dp1432 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp1433 (dp1434 g18 g3 (g19 g5 (ltRp1435 (dp1436 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1437 (dp1438 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1439 (dp1440 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1441 (dp1442 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p1443 sg22 I00 sg37 g38 sg39 g1443 sbag3 (g7 g8 NtRp1444 (dp1445 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp1446 (dp1447 g18 g3 (g19 g5 (ltRp1448 (dp1449 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1450 (dp1451 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1452 (dp1453 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1454 (dp1455 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p1456 sg22 I00 sg37 g38 sg39 g1456 sbag3 (g7 g8 NtRp1457 (dp1458 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp1459 (dp1460 g18 g3 (g19 g5 (ltRp1461 (dp1462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1463 (dp1464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1465 (dp1466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1467 (dp1468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p1469 sg22 I00 sg37 g38 sg39 g1469 sbag3 (g7 g8 NtRp1470 (dp1471 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp1472 (dp1473 g18 g3 (g19 g5 (ltRp1474 (dp1475 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1476 (dp1477 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1478 (dp1479 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1480 (dp1481 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p1482 sg22 I00 sg37 g38 sg39 g1482 sbag3 (g7 g8 NtRp1483 (dp1484 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp1485 (dp1486 g18 g3 (g19 g5 (ltRp1487 (dp1488 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1489 (dp1490 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1491 (dp1492 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1493 (dp1494 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p1495 sg22 I00 sg37 g38 sg39 g1495 sbag3 (g7 g8 NtRp1496 (dp1497 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp1498 (dp1499 g18 g3 (g19 g5 (ltRp1500 (dp1501 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1502 (dp1503 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1504 (dp1505 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1506 (dp1507 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p1508 sg22 I00 sg37 g38 sg39 g1508 sbag3 (g7 g8 NtRp1509 (dp1510 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp1511 (dp1512 g18 g3 (g19 g5 (ltRp1513 (dp1514 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1515 (dp1516 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1517 (dp1518 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1519 (dp1520 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p1521 sg22 I00 sg37 g38 sg39 g1521 sbag3 (g7 g8 NtRp1522 (dp1523 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp1524 (dp1525 g18 g3 (g19 g5 (ltRp1526 (dp1527 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1528 (dp1529 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1530 (dp1531 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1532 (dp1533 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p1534 sg22 I00 sg37 g38 sg39 g1534 sbag3 (g7 g8 NtRp1535 (dp1536 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp1537 (dp1538 g18 g3 (g19 g5 (ltRp1539 (dp1540 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1541 (dp1542 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1543 (dp1544 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1545 (dp1546 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p1547 sg22 I00 sg37 g38 sg39 g1547 sbag3 (g7 g8 NtRp1548 (dp1549 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp1550 (dp1551 g18 g3 (g19 g5 (ltRp1552 (dp1553 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1554 (dp1555 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1556 (dp1557 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1558 (dp1559 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p1560 sg22 I00 sg37 g38 sg39 g1560 sbag3 (g7 g8 NtRp1561 (dp1562 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp1563 (dp1564 g18 g3 (g19 g5 (ltRp1565 (dp1566 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1567 (dp1568 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1569 (dp1570 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1571 (dp1572 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p1573 sg22 I00 sg37 g38 sg39 g1573 sbag3 (g7 g8 NtRp1574 (dp1575 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp1576 (dp1577 g18 g3 (g19 g5 (ltRp1578 (dp1579 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1580 (dp1581 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1582 (dp1583 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1584 (dp1585 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p1586 sg22 I00 sg37 g38 sg39 g1586 sbag3 (g7 g8 NtRp1587 (dp1588 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp1589 (dp1590 g18 g3 (g19 g5 (ltRp1591 (dp1592 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1593 (dp1594 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1595 (dp1596 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1597 (dp1598 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p1599 sg22 I00 sg37 g38 sg39 g1599 sbag3 (g7 g8 NtRp1600 (dp1601 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp1602 (dp1603 g18 g3 (g19 g5 (ltRp1604 (dp1605 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1606 (dp1607 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1608 (dp1609 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1610 (dp1611 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p1612 sg22 I00 sg37 g38 sg39 g1612 sbag3 (g7 g8 NtRp1613 (dp1614 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp1615 (dp1616 g18 g3 (g19 g5 (ltRp1617 (dp1618 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1619 (dp1620 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1621 (dp1622 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1623 (dp1624 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p1625 sg22 I00 sg37 g38 sg39 g1625 sbag3 (g7 g8 NtRp1626 (dp1627 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp1628 (dp1629 g18 g3 (g19 g5 (ltRp1630 (dp1631 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1632 (dp1633 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1634 (dp1635 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1636 (dp1637 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p1638 sg22 I00 sg37 g38 sg39 g1638 sbag3 (g7 g8 NtRp1639 (dp1640 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp1641 (dp1642 g18 g3 (g19 g5 (ltRp1643 (dp1644 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1645 (dp1646 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1647 (dp1648 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1649 (dp1650 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p1651 sg22 I00 sg37 g38 sg39 g1651 sbag3 (g7 g8 NtRp1652 (dp1653 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp1654 (dp1655 g18 g3 (g19 g5 (ltRp1656 (dp1657 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1658 (dp1659 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1660 (dp1661 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1662 (dp1663 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p1664 sg22 I00 sg37 g38 sg39 g1664 sbag3 (g7 g8 NtRp1665 (dp1666 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp1667 (dp1668 g18 g3 (g19 g5 (ltRp1669 (dp1670 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1671 (dp1672 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1673 (dp1674 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1675 (dp1676 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p1677 sg22 I00 sg37 g38 sg39 g1677 sbag3 (g7 g8 NtRp1678 (dp1679 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp1680 (dp1681 g18 g3 (g19 g5 (ltRp1682 (dp1683 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1684 (dp1685 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1686 (dp1687 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1688 (dp1689 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p1690 sg22 I00 sg37 g38 sg39 g1690 sbag3 (g7 g8 NtRp1691 (dp1692 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp1693 (dp1694 g18 g3 (g19 g5 (ltRp1695 (dp1696 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1697 (dp1698 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1699 (dp1700 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1701 (dp1702 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p1703 sg22 I00 sg37 g38 sg39 g1703 sbag3 (g7 g8 NtRp1704 (dp1705 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp1706 (dp1707 g18 g3 (g19 g5 (ltRp1708 (dp1709 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1710 (dp1711 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1712 (dp1713 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1714 (dp1715 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p1716 sg22 I00 sg37 g38 sg39 g1716 sbag3 (g7 g8 NtRp1717 (dp1718 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp1719 (dp1720 g18 g3 (g19 g5 (ltRp1721 (dp1722 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1723 (dp1724 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1725 (dp1726 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1727 (dp1728 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p1729 sg22 I00 sg37 g38 sg39 g1729 sbag3 (g7 g8 NtRp1730 (dp1731 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp1732 (dp1733 g18 g3 (g19 g5 (ltRp1734 (dp1735 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1736 (dp1737 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1738 (dp1739 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1740 (dp1741 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p1742 sg22 I00 sg37 g38 sg39 g1742 sbag3 (g7 g8 NtRp1743 (dp1744 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp1745 (dp1746 g18 g3 (g19 g5 (ltRp1747 (dp1748 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1749 (dp1750 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1751 (dp1752 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1753 (dp1754 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p1755 sg22 I00 sg37 g38 sg39 g1755 sbag3 (g7 g8 NtRp1756 (dp1757 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp1758 (dp1759 g18 g3 (g19 g5 (ltRp1760 (dp1761 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1762 (dp1763 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1764 (dp1765 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1766 (dp1767 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p1768 sg22 I00 sg37 g38 sg39 g1768 sbag3 (g7 g8 NtRp1769 (dp1770 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp1771 (dp1772 g18 g3 (g19 g5 (ltRp1773 (dp1774 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1775 (dp1776 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1777 (dp1778 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1779 (dp1780 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p1781 sg22 I00 sg37 g38 sg39 g1781 sbag3 (g7 g8 NtRp1782 (dp1783 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp1784 (dp1785 g18 g3 (g19 g5 (ltRp1786 (dp1787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1788 (dp1789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1790 (dp1791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1792 (dp1793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p1794 sg22 I00 sg37 g38 sg39 g1794 sbag3 (g7 g8 NtRp1795 (dp1796 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp1797 (dp1798 g18 g3 (g19 g5 (ltRp1799 (dp1800 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1801 (dp1802 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1803 (dp1804 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1805 (dp1806 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p1807 sg22 I00 sg37 g38 sg39 g1807 sbag3 (g7 g8 NtRp1808 (dp1809 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp1810 (dp1811 g18 g3 (g19 g5 (ltRp1812 (dp1813 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1814 (dp1815 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1816 (dp1817 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1818 (dp1819 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p1820 sg22 I00 sg37 g38 sg39 g1820 sbag3 (g7 g8 NtRp1821 (dp1822 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp1823 (dp1824 g18 g3 (g19 g5 (ltRp1825 (dp1826 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1827 (dp1828 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1829 (dp1830 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1831 (dp1832 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p1833 sg22 I00 sg37 g38 sg39 g1833 sbag3 (g7 g8 NtRp1834 (dp1835 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp1836 (dp1837 g18 g3 (g19 g5 (ltRp1838 (dp1839 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1840 (dp1841 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1842 (dp1843 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1844 (dp1845 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p1846 sg22 I00 sg37 g38 sg39 g1846 sbag3 (g7 g8 NtRp1847 (dp1848 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp1849 (dp1850 g18 g3 (g19 g5 (ltRp1851 (dp1852 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1853 (dp1854 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1855 (dp1856 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1857 (dp1858 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p1859 sg22 I00 sg37 g38 sg39 g1859 sbag3 (g7 g8 NtRp1860 (dp1861 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp1862 (dp1863 g18 g3 (g19 g5 (ltRp1864 (dp1865 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1866 (dp1867 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1868 (dp1869 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1870 (dp1871 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p1872 sg22 I00 sg37 g38 sg39 g1872 sbag3 (g7 g8 NtRp1873 (dp1874 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp1875 (dp1876 g18 g3 (g19 g5 (ltRp1877 (dp1878 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1879 (dp1880 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1881 (dp1882 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1883 (dp1884 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p1885 sg22 I00 sg37 g38 sg39 g1885 sbag3 (g7 g8 NtRp1886 (dp1887 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp1888 (dp1889 g18 g3 (g19 g5 (ltRp1890 (dp1891 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1892 (dp1893 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1894 (dp1895 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1896 (dp1897 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p1898 sg22 I00 sg37 g38 sg39 g1898 sbag3 (g7 g8 NtRp1899 (dp1900 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp1901 (dp1902 g18 g3 (g19 g5 (ltRp1903 (dp1904 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1905 (dp1906 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1907 (dp1908 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1909 (dp1910 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p1911 sg22 I00 sg37 g38 sg39 g1911 sbag3 (g7 g8 NtRp1912 (dp1913 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp1914 (dp1915 g18 g3 (g19 g5 (ltRp1916 (dp1917 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1918 (dp1919 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1920 (dp1921 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1922 (dp1923 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p1924 sg22 I00 sg37 g38 sg39 g1924 sbag3 (g7 g8 NtRp1925 (dp1926 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp1927 (dp1928 g18 g3 (g19 g5 (ltRp1929 (dp1930 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1931 (dp1932 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1933 (dp1934 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1935 (dp1936 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p1937 sg22 I00 sg37 g38 sg39 g1937 sbag3 (g7 g8 NtRp1938 (dp1939 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp1940 (dp1941 g18 g3 (g19 g5 (ltRp1942 (dp1943 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1944 (dp1945 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1946 (dp1947 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1948 (dp1949 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p1950 sg22 I00 sg37 g38 sg39 g1950 sbag3 (g7 g8 NtRp1951 (dp1952 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp1953 (dp1954 g18 g3 (g19 g5 (ltRp1955 (dp1956 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1957 (dp1958 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1959 (dp1960 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1961 (dp1962 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p1963 sg22 I00 sg37 g38 sg39 g1963 sbag3 (g7 g8 NtRp1964 (dp1965 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp1966 (dp1967 g18 g3 (g19 g5 (ltRp1968 (dp1969 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1970 (dp1971 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1972 (dp1973 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1974 (dp1975 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p1976 sg22 I00 sg37 g38 sg39 g1976 sbag3 (g7 g8 NtRp1977 (dp1978 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp1979 (dp1980 g18 g3 (g19 g5 (ltRp1981 (dp1982 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1983 (dp1984 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1985 (dp1986 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1987 (dp1988 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p1989 sg22 I00 sg37 g38 sg39 g1989 sbag3 (g7 g8 NtRp1990 (dp1991 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp1992 (dp1993 g18 g3 (g19 g5 (ltRp1994 (dp1995 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1996 (dp1997 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1998 (dp1999 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2000 (dp2001 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p2002 sg22 I00 sg37 g38 sg39 g2002 sbag3 (g7 g8 NtRp2003 (dp2004 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp2005 (dp2006 g18 g3 (g19 g5 (ltRp2007 (dp2008 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2009 (dp2010 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2011 (dp2012 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2013 (dp2014 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p2015 sg22 I00 sg37 g38 sg39 g2015 sbag3 (g7 g8 NtRp2016 (dp2017 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp2018 (dp2019 g18 g3 (g19 g5 (ltRp2020 (dp2021 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2022 (dp2023 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2024 (dp2025 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2026 (dp2027 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p2028 sg22 I00 sg37 g38 sg39 g2028 sbag3 (g7 g8 NtRp2029 (dp2030 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp2031 (dp2032 g18 g3 (g19 g5 (ltRp2033 (dp2034 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2035 (dp2036 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2037 (dp2038 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2039 (dp2040 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p2041 sg22 I00 sg37 g38 sg39 g2041 sbag3 (g7 g8 NtRp2042 (dp2043 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp2044 (dp2045 g18 g3 (g19 g5 (ltRp2046 (dp2047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2048 (dp2049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2050 (dp2051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2052 (dp2053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p2054 sg22 I00 sg37 g38 sg39 g2054 sbag3 (g7 g8 NtRp2055 (dp2056 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp2057 (dp2058 g18 g3 (g19 g5 (ltRp2059 (dp2060 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2061 (dp2062 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2063 (dp2064 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2065 (dp2066 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p2067 sg22 I00 sg37 g38 sg39 g2067 sbag3 (g7 g8 NtRp2068 (dp2069 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp2070 (dp2071 g18 g3 (g19 g5 (ltRp2072 (dp2073 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2074 (dp2075 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2076 (dp2077 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2078 (dp2079 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p2080 sg22 I00 sg37 g38 sg39 g2080 sbag3 (g7 g8 NtRp2081 (dp2082 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp2083 (dp2084 g18 g3 (g19 g5 (ltRp2085 (dp2086 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2087 (dp2088 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2089 (dp2090 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2091 (dp2092 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p2093 sg22 I00 sg37 g38 sg39 g2093 sbag3 (g7 g8 NtRp2094 (dp2095 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp2096 (dp2097 g18 g3 (g19 g5 (ltRp2098 (dp2099 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2100 (dp2101 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2102 (dp2103 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2104 (dp2105 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p2106 sg22 I00 sg37 g38 sg39 g2106 sbag3 (g7 g8 NtRp2107 (dp2108 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp2109 (dp2110 g18 g3 (g19 g5 (ltRp2111 (dp2112 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2113 (dp2114 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2115 (dp2116 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2117 (dp2118 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p2119 sg22 I00 sg37 g38 sg39 g2119 sbag3 (g7 g8 NtRp2120 (dp2121 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp2122 (dp2123 g18 g3 (g19 g5 (ltRp2124 (dp2125 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2126 (dp2127 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2128 (dp2129 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2130 (dp2131 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p2132 sg22 I00 sg37 g38 sg39 g2132 sbag3 (g7 g8 NtRp2133 (dp2134 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp2135 (dp2136 g18 g3 (g19 g5 (ltRp2137 (dp2138 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2139 (dp2140 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2141 (dp2142 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2143 (dp2144 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p2145 sg22 I00 sg37 g38 sg39 g2145 sbag3 (g7 g8 NtRp2146 (dp2147 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp2148 (dp2149 g18 g3 (g19 g5 (ltRp2150 (dp2151 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2152 (dp2153 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2154 (dp2155 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2156 (dp2157 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p2158 sg22 I00 sg37 g38 sg39 g2158 sbag3 (g7 g8 NtRp2159 (dp2160 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp2161 (dp2162 g18 g3 (g19 g5 (ltRp2163 (dp2164 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2165 (dp2166 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2167 (dp2168 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2169 (dp2170 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p2171 sg22 I00 sg37 g38 sg39 g2171 sbag3 (g7 g8 NtRp2172 (dp2173 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp2174 (dp2175 g18 g3 (g19 g5 (ltRp2176 (dp2177 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2178 (dp2179 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2180 (dp2181 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2182 (dp2183 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p2184 sg22 I00 sg37 g38 sg39 g2184 sbag3 (g7 g8 NtRp2185 (dp2186 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp2187 (dp2188 g18 g3 (g19 g5 (ltRp2189 (dp2190 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2191 (dp2192 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2193 (dp2194 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2195 (dp2196 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p2197 sg22 I00 sg37 g38 sg39 g2197 sbag3 (g7 g8 NtRp2198 (dp2199 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp2200 (dp2201 g18 g3 (g19 g5 (ltRp2202 (dp2203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2204 (dp2205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2206 (dp2207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2208 (dp2209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p2210 sg22 I00 sg37 g38 sg39 g2210 sbag3 (g7 g8 NtRp2211 (dp2212 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp2213 (dp2214 g18 g3 (g19 g5 (ltRp2215 (dp2216 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2217 (dp2218 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2219 (dp2220 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2221 (dp2222 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p2223 sg22 I00 sg37 g38 sg39 g2223 sbag3 (g7 g8 NtRp2224 (dp2225 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp2226 (dp2227 g18 g3 (g19 g5 (ltRp2228 (dp2229 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2230 (dp2231 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2232 (dp2233 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2234 (dp2235 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p2236 sg22 I00 sg37 g38 sg39 g2236 sbag3 (g7 g8 NtRp2237 (dp2238 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp2239 (dp2240 g18 g3 (g19 g5 (ltRp2241 (dp2242 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2243 (dp2244 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2245 (dp2246 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2247 (dp2248 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p2249 sg22 I00 sg37 g38 sg39 g2249 sbag3 (g7 g8 NtRp2250 (dp2251 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp2252 (dp2253 g18 g3 (g19 g5 (ltRp2254 (dp2255 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2256 (dp2257 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2258 (dp2259 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2260 (dp2261 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p2262 sg22 I00 sg37 g38 sg39 g2262 sbag3 (g7 g8 NtRp2263 (dp2264 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp2265 (dp2266 g18 g3 (g19 g5 (ltRp2267 (dp2268 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2269 (dp2270 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2271 (dp2272 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2273 (dp2274 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p2275 sg22 I00 sg37 g38 sg39 g2275 sbag3 (g7 g8 NtRp2276 (dp2277 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp2278 (dp2279 g18 g3 (g19 g5 (ltRp2280 (dp2281 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2282 (dp2283 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2284 (dp2285 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2286 (dp2287 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p2288 sg22 I00 sg37 g38 sg39 g2288 sbag3 (g7 g8 NtRp2289 (dp2290 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp2291 (dp2292 g18 g3 (g19 g5 (ltRp2293 (dp2294 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2295 (dp2296 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2297 (dp2298 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2299 (dp2300 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p2301 sg22 I00 sg37 g38 sg39 g2301 sbag3 (g7 g8 NtRp2302 (dp2303 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp2304 (dp2305 g18 g3 (g19 g5 (ltRp2306 (dp2307 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2308 (dp2309 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2310 (dp2311 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2312 (dp2313 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p2314 sg22 I00 sg37 g38 sg39 g2314 sbag3 (g7 g8 NtRp2315 (dp2316 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp2317 (dp2318 g18 g3 (g19 g5 (ltRp2319 (dp2320 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2321 (dp2322 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2323 (dp2324 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2325 (dp2326 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p2327 sg22 I00 sg37 g38 sg39 g2327 sbag3 (g7 g8 NtRp2328 (dp2329 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp2330 (dp2331 g18 g3 (g19 g5 (ltRp2332 (dp2333 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2334 (dp2335 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2336 (dp2337 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2338 (dp2339 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p2340 sg22 I00 sg37 g38 sg39 g2340 sbag3 (g7 g8 NtRp2341 (dp2342 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp2343 (dp2344 g18 g3 (g19 g5 (ltRp2345 (dp2346 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2347 (dp2348 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2349 (dp2350 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2351 (dp2352 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p2353 sg22 I00 sg37 g38 sg39 g2353 sbag3 (g7 g8 NtRp2354 (dp2355 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp2356 (dp2357 g18 g3 (g19 g5 (ltRp2358 (dp2359 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2360 (dp2361 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2362 (dp2363 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2364 (dp2365 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p2366 sg22 I00 sg37 g38 sg39 g2366 sbag3 (g7 g8 NtRp2367 (dp2368 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp2369 (dp2370 g18 g3 (g19 g5 (ltRp2371 (dp2372 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2373 (dp2374 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2375 (dp2376 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2377 (dp2378 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p2379 sg22 I00 sg37 g38 sg39 g2379 sbag3 (g7 g8 NtRp2380 (dp2381 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp2382 (dp2383 g18 g3 (g19 g5 (ltRp2384 (dp2385 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2386 (dp2387 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2388 (dp2389 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2390 (dp2391 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p2392 sg22 I00 sg37 g38 sg39 g2392 sbag3 (g7 g8 NtRp2393 (dp2394 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp2395 (dp2396 g18 g3 (g19 g5 (ltRp2397 (dp2398 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2399 (dp2400 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2401 (dp2402 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2403 (dp2404 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p2405 sg22 I00 sg37 g38 sg39 g2405 sbag3 (g7 g8 NtRp2406 (dp2407 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp2408 (dp2409 g18 g3 (g19 g5 (ltRp2410 (dp2411 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2412 (dp2413 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2414 (dp2415 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2416 (dp2417 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p2418 sg22 I00 sg37 g38 sg39 g2418 sbag3 (g7 g8 NtRp2419 (dp2420 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp2421 (dp2422 g18 g3 (g19 g5 (ltRp2423 (dp2424 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2425 (dp2426 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2427 (dp2428 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2429 (dp2430 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p2431 sg22 I00 sg37 g38 sg39 g2431 sbag3 (g7 g8 NtRp2432 (dp2433 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp2434 (dp2435 g18 g3 (g19 g5 (ltRp2436 (dp2437 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2438 (dp2439 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2440 (dp2441 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2442 (dp2443 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p2444 sg22 I00 sg37 g38 sg39 g2444 sbag3 (g7 g8 NtRp2445 (dp2446 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp2447 (dp2448 g18 g3 (g19 g5 (ltRp2449 (dp2450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2451 (dp2452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2453 (dp2454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2455 (dp2456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p2457 sg22 I00 sg37 g38 sg39 g2457 sbag3 (g7 g8 NtRp2458 (dp2459 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp2460 (dp2461 g18 g3 (g19 g5 (ltRp2462 (dp2463 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2464 (dp2465 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2466 (dp2467 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2468 (dp2469 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p2470 sg22 I00 sg37 g38 sg39 g2470 sbag3 (g7 g8 NtRp2471 (dp2472 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp2473 (dp2474 g18 g3 (g19 g5 (ltRp2475 (dp2476 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2477 (dp2478 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2479 (dp2480 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2481 (dp2482 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p2483 sg22 I00 sg37 g38 sg39 g2483 sbag3 (g7 g8 NtRp2484 (dp2485 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp2486 (dp2487 g18 g3 (g19 g5 (ltRp2488 (dp2489 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2490 (dp2491 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2492 (dp2493 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2494 (dp2495 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p2496 sg22 I00 sg37 g38 sg39 g2496 sbag3 (g7 g8 NtRp2497 (dp2498 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp2499 (dp2500 g18 g3 (g19 g5 (ltRp2501 (dp2502 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2503 (dp2504 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2505 (dp2506 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2507 (dp2508 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p2509 sg22 I00 sg37 g38 sg39 g2509 sbag3 (g7 g8 NtRp2510 (dp2511 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp2512 (dp2513 g18 g3 (g19 g5 (ltRp2514 (dp2515 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2516 (dp2517 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2518 (dp2519 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2520 (dp2521 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p2522 sg22 I00 sg37 g38 sg39 g2522 sbag3 (g7 g8 NtRp2523 (dp2524 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp2525 (dp2526 g18 g3 (g19 g5 (ltRp2527 (dp2528 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2529 (dp2530 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2531 (dp2532 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2533 (dp2534 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p2535 sg22 I00 sg37 g38 sg39 g2535 sbag3 (g7 g8 NtRp2536 (dp2537 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp2538 (dp2539 g18 g3 (g19 g5 (ltRp2540 (dp2541 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2542 (dp2543 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2544 (dp2545 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2546 (dp2547 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p2548 sg22 I00 sg37 g38 sg39 g2548 sbag3 (g7 g8 NtRp2549 (dp2550 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp2551 (dp2552 g18 g3 (g19 g5 (ltRp2553 (dp2554 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2555 (dp2556 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2557 (dp2558 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2559 (dp2560 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p2561 sg22 I00 sg37 g38 sg39 g2561 sbag3 (g7 g8 NtRp2562 (dp2563 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp2564 (dp2565 g18 g3 (g19 g5 (ltRp2566 (dp2567 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2568 (dp2569 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2570 (dp2571 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2572 (dp2573 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p2574 sg22 I00 sg37 g38 sg39 g2574 sbag3 (g7 g8 NtRp2575 (dp2576 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp2577 (dp2578 g18 g3 (g19 g5 (ltRp2579 (dp2580 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2581 (dp2582 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2583 (dp2584 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2585 (dp2586 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p2587 sg22 I00 sg37 g38 sg39 g2587 sbag3 (g7 g8 NtRp2588 (dp2589 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp2590 (dp2591 g18 g3 (g19 g5 (ltRp2592 (dp2593 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2594 (dp2595 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2596 (dp2597 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2598 (dp2599 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p2600 sg22 I00 sg37 g38 sg39 g2600 sbag3 (g7 g8 NtRp2601 (dp2602 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp2603 (dp2604 g18 g3 (g19 g5 (ltRp2605 (dp2606 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2607 (dp2608 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2609 (dp2610 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2611 (dp2612 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p2613 sg22 I00 sg37 g38 sg39 g2613 sbag3 (g7 g8 NtRp2614 (dp2615 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp2616 (dp2617 g18 g3 (g19 g5 (ltRp2618 (dp2619 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2620 (dp2621 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2622 (dp2623 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2624 (dp2625 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p2626 sg22 I00 sg37 g38 sg39 g2626 sbag3 (g7 g8 NtRp2627 (dp2628 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp2629 (dp2630 g18 g3 (g19 g5 (ltRp2631 (dp2632 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2633 (dp2634 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2635 (dp2636 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2637 (dp2638 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p2639 sg22 I00 sg37 g38 sg39 g2639 sbag3 (g7 g8 NtRp2640 (dp2641 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp2642 (dp2643 g18 g3 (g19 g5 (ltRp2644 (dp2645 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2646 (dp2647 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2648 (dp2649 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2650 (dp2651 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p2652 sg22 I00 sg37 g38 sg39 g2652 sbag3 (g7 g8 NtRp2653 (dp2654 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp2655 (dp2656 g18 g3 (g19 g5 (ltRp2657 (dp2658 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2659 (dp2660 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2661 (dp2662 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2663 (dp2664 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p2665 sg22 I00 sg37 g38 sg39 g2665 sbag3 (g7 g8 NtRp2666 (dp2667 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp2668 (dp2669 g18 g3 (g19 g5 (ltRp2670 (dp2671 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2672 (dp2673 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2674 (dp2675 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2676 (dp2677 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p2678 sg22 I00 sg37 g38 sg39 g2678 sbag3 (g7 g8 NtRp2679 (dp2680 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp2681 (dp2682 g18 g3 (g19 g5 (ltRp2683 (dp2684 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2685 (dp2686 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2687 (dp2688 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2689 (dp2690 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p2691 sg22 I00 sg37 g38 sg39 g2691 sbag3 (g7 g8 NtRp2692 (dp2693 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp2694 (dp2695 g18 g3 (g19 g5 (ltRp2696 (dp2697 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2698 (dp2699 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2700 (dp2701 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2702 (dp2703 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p2704 sg22 I00 sg37 g38 sg39 g2704 sbag3 (g7 g8 NtRp2705 (dp2706 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp2707 (dp2708 g18 g3 (g19 g5 (ltRp2709 (dp2710 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2711 (dp2712 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2713 (dp2714 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2715 (dp2716 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p2717 sg22 I00 sg37 g38 sg39 g2717 sbag3 (g7 g8 NtRp2718 (dp2719 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp2720 (dp2721 g18 g3 (g19 g5 (ltRp2722 (dp2723 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2724 (dp2725 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2726 (dp2727 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2728 (dp2729 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p2730 sg22 I00 sg37 g38 sg39 g2730 sbag3 (g7 g8 NtRp2731 (dp2732 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp2733 (dp2734 g18 g3 (g19 g5 (ltRp2735 (dp2736 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2737 (dp2738 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2739 (dp2740 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2741 (dp2742 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p2743 sg22 I00 sg37 g38 sg39 g2743 sbag3 (g7 g8 NtRp2744 (dp2745 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp2746 (dp2747 g18 g3 (g19 g5 (ltRp2748 (dp2749 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2750 (dp2751 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2752 (dp2753 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2754 (dp2755 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p2756 sg22 I00 sg37 g38 sg39 g2756 sbag3 (g7 g8 NtRp2757 (dp2758 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp2759 (dp2760 g18 g3 (g19 g5 (ltRp2761 (dp2762 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2763 (dp2764 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2765 (dp2766 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2767 (dp2768 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p2769 sg22 I00 sg37 g38 sg39 g2769 sbag3 (g7 g8 NtRp2770 (dp2771 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp2772 (dp2773 g18 g3 (g19 g5 (ltRp2774 (dp2775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2776 (dp2777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2778 (dp2779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2780 (dp2781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p2782 sg22 I00 sg37 g38 sg39 g2782 sbag3 (g7 g8 NtRp2783 (dp2784 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp2785 (dp2786 g18 g3 (g19 g5 (ltRp2787 (dp2788 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2789 (dp2790 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2791 (dp2792 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2793 (dp2794 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p2795 sg22 I00 sg37 g38 sg39 g2795 sbatRp2796 (dp2797 g12 I185 sg22 I00 sg11 NsbsS'HTTP Client Per URL' p2798 g3 (g4 g5 (lp2799 g3 (g7 g8 NtRp2800 (dp2801 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp2802 (dp2803 g18 g3 (g19 g5 (ltRp2804 (dp2805 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2806 (dp2807 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2808 (dp2809 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2810 (dp2811 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Sent' p2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp2813 (dp2814 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp2815 (dp2816 g18 g3 (g19 g5 (ltRp2817 (dp2818 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2819 (dp2820 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2821 (dp2822 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2823 (dp2824 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp2826 (dp2827 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp2828 (dp2829 g18 g3 (g19 g5 (ltRp2830 (dp2831 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2832 (dp2833 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2834 (dp2835 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2836 (dp2837 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (Provisional)' p2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp2839 (dp2840 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp2841 (dp2842 g18 g3 (g19 g5 (ltRp2843 (dp2844 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2845 (dp2846 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2847 (dp2848 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2849 (dp2850 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp2852 (dp2853 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp2854 (dp2855 g18 g3 (g19 g5 (ltRp2856 (dp2857 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2858 (dp2859 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2860 (dp2861 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2862 (dp2863 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write)' p2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp2865 (dp2866 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp2867 (dp2868 g18 g3 (g19 g5 (ltRp2869 (dp2870 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2871 (dp2872 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2873 (dp2874 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2875 (dp2876 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Read)' p2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp2878 (dp2879 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp2880 (dp2881 g18 g3 (g19 g5 (ltRp2882 (dp2883 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2884 (dp2885 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2886 (dp2887 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2888 (dp2889 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Bad Header)' p2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp2891 (dp2892 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp2893 (dp2894 g18 g3 (g19 g5 (ltRp2895 (dp2896 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2897 (dp2898 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2899 (dp2900 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2901 (dp2902 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx)' p2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp2904 (dp2905 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp2906 (dp2907 g18 g3 (g19 g5 (ltRp2908 (dp2909 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2910 (dp2911 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2912 (dp2913 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2914 (dp2915 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (400)' p2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp2917 (dp2918 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp2919 (dp2920 g18 g3 (g19 g5 (ltRp2921 (dp2922 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2923 (dp2924 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2925 (dp2926 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2927 (dp2928 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (401)' p2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp2930 (dp2931 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp2932 (dp2933 g18 g3 (g19 g5 (ltRp2934 (dp2935 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2936 (dp2937 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2938 (dp2939 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2940 (dp2941 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (403)' p2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp2943 (dp2944 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp2945 (dp2946 g18 g3 (g19 g5 (ltRp2947 (dp2948 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2949 (dp2950 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2951 (dp2952 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2953 (dp2954 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp2956 (dp2957 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp2958 (dp2959 g18 g3 (g19 g5 (ltRp2960 (dp2961 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2962 (dp2963 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2964 (dp2965 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2966 (dp2967 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (407)' p2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp2969 (dp2970 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp2971 (dp2972 g18 g3 (g19 g5 (ltRp2973 (dp2974 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2975 (dp2976 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2977 (dp2978 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2979 (dp2980 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (408)' p2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp2982 (dp2983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp2984 (dp2985 g18 g3 (g19 g5 (ltRp2986 (dp2987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2988 (dp2989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2990 (dp2991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2992 (dp2993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx other)' p2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp2995 (dp2996 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp2997 (dp2998 g18 g3 (g19 g5 (ltRp2999 (dp3000 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3001 (dp3002 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3003 (dp3004 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3005 (dp3006 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx)' p3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp3008 (dp3009 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp3010 (dp3011 g18 g3 (g19 g5 (ltRp3012 (dp3013 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3014 (dp3015 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3016 (dp3017 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3018 (dp3019 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (505)' p3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp3021 (dp3022 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp3023 (dp3024 g18 g3 (g19 g5 (ltRp3025 (dp3026 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3027 (dp3028 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3029 (dp3030 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3031 (dp3032 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx other)' p3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp3034 (dp3035 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp3036 (dp3037 g18 g3 (g19 g5 (ltRp3038 (dp3039 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3040 (dp3041 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3042 (dp3043 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3044 (dp3045 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (other)' p3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp3047 (dp3048 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp3049 (dp3050 g18 g3 (g19 g5 (ltRp3051 (dp3052 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3053 (dp3054 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3055 (dp3056 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3057 (dp3058 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Timeout)' p3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp3060 (dp3061 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp3062 (dp3063 g18 g3 (g19 g5 (ltRp3064 (dp3065 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3066 (dp3067 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3068 (dp3069 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3070 (dp3071 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp3073 (dp3074 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp3075 (dp3076 g18 g3 (g19 g5 (ltRp3077 (dp3078 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3079 (dp3080 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3081 (dp3082 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3083 (dp3084 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted Before Request' p3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp3086 (dp3087 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp3088 (dp3089 g18 g3 (g19 g5 (ltRp3090 (dp3091 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3092 (dp3093 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3094 (dp3095 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3096 (dp3097 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted After Request' p3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp3099 (dp3100 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp3101 (dp3102 g18 g3 (g19 g5 (ltRp3103 (dp3104 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3105 (dp3106 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3107 (dp3108 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3109 (dp3110 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received With Match' p3111 sg22 I00 sg37 g38 sg39 g3111 sbag3 (g7 g8 NtRp3112 (dp3113 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp3114 (dp3115 g18 g3 (g19 g5 (ltRp3116 (dp3117 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3118 (dp3119 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3120 (dp3121 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3122 (dp3123 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received Without Match' p3124 sg22 I00 sg37 g38 sg39 g3124 sbag3 (g7 g8 NtRp3125 (dp3126 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp3127 (dp3128 g18 g3 (g19 g5 (ltRp3129 (dp3130 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3131 (dp3132 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3133 (dp3134 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3135 (dp3136 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Intermediate Responses Received (1xx)' p3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3138 (dp3139 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp3140 (dp3141 g18 g3 (g19 g5 (ltRp3142 (dp3143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3144 (dp3145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3146 (dp3147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3148 (dp3149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (2xx)' p3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3151 (dp3152 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp3153 (dp3154 g18 g3 (g19 g5 (ltRp3155 (dp3156 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3157 (dp3158 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3159 (dp3160 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3161 (dp3162 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (3xx)' p3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3164 (dp3165 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp3166 (dp3167 g18 g3 (g19 g5 (ltRp3168 (dp3169 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3170 (dp3171 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3172 (dp3173 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3174 (dp3175 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (301)' p3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3177 (dp3178 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp3179 (dp3180 g18 g3 (g19 g5 (ltRp3181 (dp3182 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3183 (dp3184 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3185 (dp3186 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3187 (dp3188 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (302)' p3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp3190 (dp3191 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp3192 (dp3193 g18 g3 (g19 g5 (ltRp3194 (dp3195 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3196 (dp3197 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3198 (dp3199 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3200 (dp3201 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (303)' p3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp3203 (dp3204 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp3205 (dp3206 g18 g3 (g19 g5 (ltRp3207 (dp3208 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3209 (dp3210 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3211 (dp3212 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3213 (dp3214 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (307)' p3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp3216 (dp3217 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp3218 (dp3219 g18 g3 (g19 g5 (ltRp3220 (dp3221 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3222 (dp3223 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3224 (dp3225 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3226 (dp3227 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Sent' p3228 sg22 I00 sg37 g38 sg39 g3228 sbag3 (g7 g8 NtRp3229 (dp3230 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp3231 (dp3232 g18 g3 (g19 g5 (ltRp3233 (dp3234 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3235 (dp3236 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3237 (dp3238 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3239 (dp3240 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Headers Received' p3241 sg22 I00 sg37 g38 sg39 g3241 sbag3 (g7 g8 NtRp3242 (dp3243 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp3244 (dp3245 g18 g3 (g19 g5 (ltRp3246 (dp3247 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3248 (dp3249 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3250 (dp3251 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3252 (dp3253 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Received' p3254 sg22 I00 sg37 g38 sg39 g3254 sbag3 (g7 g8 NtRp3255 (dp3256 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp3257 (dp3258 g18 g3 (g19 g5 (ltRp3259 (dp3260 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3261 (dp3262 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3263 (dp3264 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3265 (dp3266 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Successful' p3267 sg22 I00 sg37 g38 sg39 g3267 sbag3 (g7 g8 NtRp3268 (dp3269 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp3270 (dp3271 g18 g3 (g19 g5 (ltRp3272 (dp3273 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3274 (dp3275 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3276 (dp3277 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3278 (dp3279 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Failed' p3280 sg22 I00 sg37 g38 sg39 g3280 sbag3 (g7 g8 NtRp3281 (dp3282 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp3283 (dp3284 g18 g3 (g19 g5 (ltRp3285 (dp3286 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3287 (dp3288 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3289 (dp3290 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3291 (dp3292 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p3293 sg22 I00 sg37 g38 sg39 g3293 sbag3 (g7 g8 NtRp3294 (dp3295 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp3296 (dp3297 g18 g3 (g19 g5 (ltRp3298 (dp3299 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3300 (dp3301 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3302 (dp3303 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3304 (dp3305 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p3306 sg22 I00 sg37 g261 sg39 g3306 sbag3 (g7 g8 NtRp3307 (dp3308 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp3309 (dp3310 g18 g3 (g19 g5 (ltRp3311 (dp3312 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3313 (dp3314 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3315 (dp3316 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3317 (dp3318 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p3319 sg22 I00 sg37 g261 sg39 g3319 sbag3 (g7 g8 NtRp3320 (dp3321 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp3322 (dp3323 g18 g3 (g19 g5 (ltRp3324 (dp3325 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3326 (dp3327 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3328 (dp3329 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3330 (dp3331 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Sent' p3332 sg22 I00 sg37 g38 sg39 g3332 sbag3 (g7 g8 NtRp3333 (dp3334 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp3335 (dp3336 g18 g3 (g19 g5 (ltRp3337 (dp3338 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3339 (dp3340 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3341 (dp3342 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3343 (dp3344 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p3345 sg22 I00 sg37 g38 sg39 g3345 sbag3 (g7 g8 NtRp3346 (dp3347 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp3348 (dp3349 g18 g3 (g19 g5 (ltRp3350 (dp3351 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3352 (dp3353 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3354 (dp3355 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3356 (dp3357 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size in Request' p3358 sg22 I00 sg37 g261 sg39 g3358 sbag3 (g7 g8 NtRp3359 (dp3360 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp3361 (dp3362 g18 g3 (g19 g5 (ltRp3363 (dp3364 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3365 (dp3366 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3367 (dp3368 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3369 (dp3370 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p3371 sg22 I00 sg37 g261 sg39 g3371 sbag3 (g7 g8 NtRp3372 (dp3373 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp3374 (dp3375 g18 g3 (g19 g5 (ltRp3376 (dp3377 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3378 (dp3379 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3380 (dp3381 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3382 (dp3383 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name1-Value1' p3384 sg22 I00 sg37 S'kString' p3385 sg39 g3384 sbag3 (g7 g8 NtRp3386 (dp3387 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp3388 (dp3389 g18 g3 (g19 g5 (ltRp3390 (dp3391 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3392 (dp3393 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3394 (dp3395 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3396 (dp3397 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter1' p3398 sg22 I00 sg37 g38 sg39 g3398 sbag3 (g7 g8 NtRp3399 (dp3400 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp3401 (dp3402 g18 g3 (g19 g5 (ltRp3403 (dp3404 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3405 (dp3406 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3407 (dp3408 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3409 (dp3410 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name2-Value2' p3411 sg22 I00 sg37 g3385 sg39 g3411 sbag3 (g7 g8 NtRp3412 (dp3413 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp3414 (dp3415 g18 g3 (g19 g5 (ltRp3416 (dp3417 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3418 (dp3419 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3420 (dp3421 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3422 (dp3423 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter2' p3424 sg22 I00 sg37 g38 sg39 g3424 sbag3 (g7 g8 NtRp3425 (dp3426 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp3427 (dp3428 g18 g3 (g19 g5 (ltRp3429 (dp3430 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3431 (dp3432 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3433 (dp3434 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3435 (dp3436 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name3-Value3' p3437 sg22 I00 sg37 g3385 sg39 g3437 sbag3 (g7 g8 NtRp3438 (dp3439 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp3440 (dp3441 g18 g3 (g19 g5 (ltRp3442 (dp3443 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3444 (dp3445 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3446 (dp3447 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3448 (dp3449 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter3' p3450 sg22 I00 sg37 g38 sg39 g3450 sbag3 (g7 g8 NtRp3451 (dp3452 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp3453 (dp3454 g18 g3 (g19 g5 (ltRp3455 (dp3456 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3457 (dp3458 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3459 (dp3460 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3461 (dp3462 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name4-Value4' p3463 sg22 I00 sg37 g3385 sg39 g3463 sbag3 (g7 g8 NtRp3464 (dp3465 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp3466 (dp3467 g18 g3 (g19 g5 (ltRp3468 (dp3469 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3470 (dp3471 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3472 (dp3473 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3474 (dp3475 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter4' p3476 sg22 I00 sg37 g38 sg39 g3476 sbag3 (g7 g8 NtRp3477 (dp3478 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp3479 (dp3480 g18 g3 (g19 g5 (ltRp3481 (dp3482 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3483 (dp3484 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3485 (dp3486 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3487 (dp3488 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name5-Value5' p3489 sg22 I00 sg37 g3385 sg39 g3489 sbag3 (g7 g8 NtRp3490 (dp3491 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp3492 (dp3493 g18 g3 (g19 g5 (ltRp3494 (dp3495 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3496 (dp3497 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3498 (dp3499 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3500 (dp3501 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter5' p3502 sg22 I00 sg37 g38 sg39 g3502 sbag3 (g7 g8 NtRp3503 (dp3504 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp3505 (dp3506 g18 g3 (g19 g5 (ltRp3507 (dp3508 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3509 (dp3510 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3511 (dp3512 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3513 (dp3514 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name6-Value6' p3515 sg22 I00 sg37 g3385 sg39 g3515 sbag3 (g7 g8 NtRp3516 (dp3517 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp3518 (dp3519 g18 g3 (g19 g5 (ltRp3520 (dp3521 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3522 (dp3523 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3524 (dp3525 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3526 (dp3527 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter6' p3528 sg22 I00 sg37 g38 sg39 g3528 sbag3 (g7 g8 NtRp3529 (dp3530 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp3531 (dp3532 g18 g3 (g19 g5 (ltRp3533 (dp3534 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3535 (dp3536 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3537 (dp3538 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3539 (dp3540 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name7-Value7' p3541 sg22 I00 sg37 g3385 sg39 g3541 sbag3 (g7 g8 NtRp3542 (dp3543 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp3544 (dp3545 g18 g3 (g19 g5 (ltRp3546 (dp3547 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3548 (dp3549 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3550 (dp3551 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3552 (dp3553 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter7' p3554 sg22 I00 sg37 g38 sg39 g3554 sbag3 (g7 g8 NtRp3555 (dp3556 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp3557 (dp3558 g18 g3 (g19 g5 (ltRp3559 (dp3560 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3561 (dp3562 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3563 (dp3564 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3565 (dp3566 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name8-Value8' p3567 sg22 I00 sg37 g3385 sg39 g3567 sbag3 (g7 g8 NtRp3568 (dp3569 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp3570 (dp3571 g18 g3 (g19 g5 (ltRp3572 (dp3573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3574 (dp3575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3576 (dp3577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3578 (dp3579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter8' p3580 sg22 I00 sg37 g38 sg39 g3580 sbag3 (g7 g8 NtRp3581 (dp3582 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp3583 (dp3584 g18 g3 (g19 g5 (ltRp3585 (dp3586 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3587 (dp3588 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3589 (dp3590 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3591 (dp3592 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name9-Value9' p3593 sg22 I00 sg37 g3385 sg39 g3593 sbag3 (g7 g8 NtRp3594 (dp3595 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp3596 (dp3597 g18 g3 (g19 g5 (ltRp3598 (dp3599 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3600 (dp3601 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3602 (dp3603 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3604 (dp3605 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter9' p3606 sg22 I00 sg37 g38 sg39 g3606 sbag3 (g7 g8 NtRp3607 (dp3608 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp3609 (dp3610 g18 g3 (g19 g5 (ltRp3611 (dp3612 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3613 (dp3614 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3615 (dp3616 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3617 (dp3618 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name10-Value10' p3619 sg22 I00 sg37 g3385 sg39 g3619 sbag3 (g7 g8 NtRp3620 (dp3621 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp3622 (dp3623 g18 g3 (g19 g5 (ltRp3624 (dp3625 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3626 (dp3627 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3628 (dp3629 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3630 (dp3631 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter10' p3632 sg22 I00 sg37 g38 sg39 g3632 sbag3 (g7 g8 NtRp3633 (dp3634 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp3635 (dp3636 g18 g3 (g19 g5 (ltRp3637 (dp3638 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3639 (dp3640 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3641 (dp3642 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3643 (dp3644 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Received' p3645 sg22 I00 sg37 g38 sg39 g3645 sbag3 (g7 g8 NtRp3646 (dp3647 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp3648 (dp3649 g18 g3 (g19 g5 (ltRp3650 (dp3651 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3652 (dp3653 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3654 (dp3655 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3656 (dp3657 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Successful' p3658 sg22 I00 sg37 g38 sg39 g3658 sbag3 (g7 g8 NtRp3659 (dp3660 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp3661 (dp3662 g18 g3 (g19 g5 (ltRp3663 (dp3664 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3665 (dp3666 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3667 (dp3668 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3669 (dp3670 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Failed' p3671 sg22 I00 sg37 g38 sg39 g3671 sbag3 (g7 g8 NtRp3672 (dp3673 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp3674 (dp3675 g18 g3 (g19 g5 (ltRp3676 (dp3677 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3678 (dp3679 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3680 (dp3681 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3682 (dp3683 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Received' p3684 sg22 I00 sg37 g38 sg39 g3684 sbag3 (g7 g8 NtRp3685 (dp3686 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp3687 (dp3688 g18 g3 (g19 g5 (ltRp3689 (dp3690 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3691 (dp3692 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3693 (dp3694 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3695 (dp3696 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Successful' p3697 sg22 I00 sg37 g38 sg39 g3697 sbag3 (g7 g8 NtRp3698 (dp3699 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp3700 (dp3701 g18 g3 (g19 g5 (ltRp3702 (dp3703 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3704 (dp3705 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3706 (dp3707 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3708 (dp3709 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Failed' p3710 sg22 I00 sg37 g38 sg39 g3710 sbag3 (g7 g8 NtRp3711 (dp3712 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp3713 (dp3714 g18 g3 (g19 g5 (ltRp3715 (dp3716 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3717 (dp3718 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3719 (dp3720 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3721 (dp3722 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Received' p3723 sg22 I00 sg37 g38 sg39 g3723 sbag3 (g7 g8 NtRp3724 (dp3725 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp3726 (dp3727 g18 g3 (g19 g5 (ltRp3728 (dp3729 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3730 (dp3731 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3732 (dp3733 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3734 (dp3735 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Successful' p3736 sg22 I00 sg37 g38 sg39 g3736 sbag3 (g7 g8 NtRp3737 (dp3738 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp3739 (dp3740 g18 g3 (g19 g5 (ltRp3741 (dp3742 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3743 (dp3744 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3745 (dp3746 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3747 (dp3748 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Failed' p3749 sg22 I00 sg37 g38 sg39 g3749 sbag3 (g7 g8 NtRp3750 (dp3751 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp3752 (dp3753 g18 g3 (g19 g5 (ltRp3754 (dp3755 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3756 (dp3757 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3758 (dp3759 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3760 (dp3761 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Received' p3762 sg22 I00 sg37 g38 sg39 g3762 sbag3 (g7 g8 NtRp3763 (dp3764 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp3765 (dp3766 g18 g3 (g19 g5 (ltRp3767 (dp3768 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3769 (dp3770 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3771 (dp3772 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3773 (dp3774 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Successful' p3775 sg22 I00 sg37 g38 sg39 g3775 sbag3 (g7 g8 NtRp3776 (dp3777 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp3778 (dp3779 g18 g3 (g19 g5 (ltRp3780 (dp3781 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3782 (dp3783 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3784 (dp3785 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3786 (dp3787 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Failed' p3788 sg22 I00 sg37 g38 sg39 g3788 sbag3 (g7 g8 NtRp3789 (dp3790 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp3791 (dp3792 g18 g3 (g19 g5 (ltRp3793 (dp3794 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3795 (dp3796 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3797 (dp3798 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3799 (dp3800 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Average Compression Ratio' p3801 sg22 I00 sg37 g261 sg39 g3801 sbatRp3802 (dp3803 g12 I76 sg22 I00 sg11 NsbsS'HTTP Client' p3804 g3 (g4 g5 (lp3805 g3 (g7 g8 NtRp3806 (dp3807 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp3808 (dp3809 g18 g3 (g19 g5 (ltRp3810 (dp3811 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3812 (dp3813 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3814 (dp3815 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3816 (dp3817 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Simulated Users' p3818 sg22 I00 sg37 g38 sg39 g3818 sbag3 (g7 g8 NtRp3819 (dp3820 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp3821 (dp3822 g18 g3 (g19 g5 (ltRp3823 (dp3824 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3825 (dp3826 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3827 (dp3828 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3829 (dp3830 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Concurrent Connections' p3831 sg22 I00 sg37 g38 sg39 g3831 sbag3 (g7 g8 NtRp3832 (dp3833 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp3834 (dp3835 g18 g3 (g19 g5 (ltRp3836 (dp3837 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3838 (dp3839 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3840 (dp3841 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3842 (dp3843 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connections' p3844 sg22 I00 sg37 g38 sg39 g3844 sbag3 (g7 g8 NtRp3845 (dp3846 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp3847 (dp3848 g18 g3 (g19 g5 (ltRp3849 (dp3850 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3851 (dp3852 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3853 (dp3854 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3855 (dp3856 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Attempts' p3857 sg22 I00 sg37 g38 sg39 g3857 sbag3 (g7 g8 NtRp3858 (dp3859 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp3860 (dp3861 g18 g3 (g19 g5 (ltRp3862 (dp3863 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3864 (dp3865 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3866 (dp3867 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3868 (dp3869 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Aborts' p3870 sg22 I00 sg37 g38 sg39 g3870 sbag3 (g7 g8 NtRp3871 (dp3872 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp3873 (dp3874 g18 g3 (g19 g5 (ltRp3875 (dp3876 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3877 (dp3878 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3879 (dp3880 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3881 (dp3882 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Aborts' p3883 sg22 I00 sg37 g38 sg39 g3883 sbag3 (g7 g8 NtRp3884 (dp3885 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp3886 (dp3887 g18 g3 (g19 g5 (ltRp3888 (dp3889 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3890 (dp3891 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3892 (dp3893 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3894 (dp3895 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions' p3896 sg22 I00 sg37 g38 sg39 g3896 sbag3 (g7 g8 NtRp3897 (dp3898 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp3899 (dp3900 g18 g3 (g19 g5 (ltRp3901 (dp3902 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3903 (dp3904 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3905 (dp3906 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3907 (dp3908 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes' p3909 sg22 I00 sg37 g38 sg39 g3909 sbag3 (g7 g8 NtRp3910 (dp3911 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp3912 (dp3913 g18 g3 (g19 g5 (ltRp3914 (dp3915 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3916 (dp3917 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3918 (dp3919 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3920 (dp3921 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp3922 (dp3923 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp3924 (dp3925 g18 g3 (g19 g5 (ltRp3926 (dp3927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3928 (dp3929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3930 (dp3931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3932 (dp3933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp3934 (dp3935 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp3936 (dp3937 g18 g3 (g19 g5 (ltRp3938 (dp3939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3940 (dp3941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3942 (dp3943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3944 (dp3945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp3946 (dp3947 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp3948 (dp3949 g18 g3 (g19 g5 (ltRp3950 (dp3951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3952 (dp3953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3954 (dp3955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3956 (dp3957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3958 (dp3959 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp3960 (dp3961 g18 g3 (g19 g5 (ltRp3962 (dp3963 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3964 (dp3965 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3966 (dp3967 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3968 (dp3969 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3970 (dp3971 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp3972 (dp3973 g18 g3 (g19 g5 (ltRp3974 (dp3975 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3976 (dp3977 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3978 (dp3979 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3980 (dp3981 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3982 (dp3983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp3984 (dp3985 g18 g3 (g19 g5 (ltRp3986 (dp3987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3988 (dp3989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3990 (dp3991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3992 (dp3993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3994 (dp3995 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp3996 (dp3997 g18 g3 (g19 g5 (ltRp3998 (dp3999 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4000 (dp4001 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4002 (dp4003 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4004 (dp4005 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp4006 (dp4007 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp4008 (dp4009 g18 g3 (g19 g5 (ltRp4010 (dp4011 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4012 (dp4013 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4014 (dp4015 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4016 (dp4017 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp4018 (dp4019 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp4020 (dp4021 g18 g3 (g19 g5 (ltRp4022 (dp4023 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4024 (dp4025 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4026 (dp4027 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4028 (dp4029 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp4030 (dp4031 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp4032 (dp4033 g18 g3 (g19 g5 (ltRp4034 (dp4035 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4036 (dp4037 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4038 (dp4039 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4040 (dp4041 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp4042 (dp4043 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp4044 (dp4045 g18 g3 (g19 g5 (ltRp4046 (dp4047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4048 (dp4049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4050 (dp4051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4052 (dp4053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp4054 (dp4055 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp4056 (dp4057 g18 g3 (g19 g5 (ltRp4058 (dp4059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4060 (dp4061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4062 (dp4063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4064 (dp4065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp4066 (dp4067 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp4068 (dp4069 g18 g3 (g19 g5 (ltRp4070 (dp4071 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4072 (dp4073 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4074 (dp4075 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4076 (dp4077 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp4078 (dp4079 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp4080 (dp4081 g18 g3 (g19 g5 (ltRp4082 (dp4083 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4084 (dp4085 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4086 (dp4087 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4088 (dp4089 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp4090 (dp4091 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp4092 (dp4093 g18 g3 (g19 g5 (ltRp4094 (dp4095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4096 (dp4097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4098 (dp4099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4100 (dp4101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp4102 (dp4103 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp4104 (dp4105 g18 g3 (g19 g5 (ltRp4106 (dp4107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4108 (dp4109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4110 (dp4111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4112 (dp4113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp4114 (dp4115 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp4116 (dp4117 g18 g3 (g19 g5 (ltRp4118 (dp4119 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4120 (dp4121 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4122 (dp4123 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4124 (dp4125 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp4126 (dp4127 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp4128 (dp4129 g18 g3 (g19 g5 (ltRp4130 (dp4131 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4132 (dp4133 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4134 (dp4135 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4136 (dp4137 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp4138 (dp4139 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp4140 (dp4141 g18 g3 (g19 g5 (ltRp4142 (dp4143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4144 (dp4145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4146 (dp4147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4148 (dp4149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp4150 (dp4151 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp4152 (dp4153 g18 g3 (g19 g5 (ltRp4154 (dp4155 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4156 (dp4157 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4158 (dp4159 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4160 (dp4161 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp4162 (dp4163 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp4164 (dp4165 g18 g3 (g19 g5 (ltRp4166 (dp4167 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4168 (dp4169 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4170 (dp4171 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4172 (dp4173 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp4174 (dp4175 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp4176 (dp4177 g18 g3 (g19 g5 (ltRp4178 (dp4179 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4180 (dp4181 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4182 (dp4183 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4184 (dp4185 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp4186 (dp4187 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp4188 (dp4189 g18 g3 (g19 g5 (ltRp4190 (dp4191 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4192 (dp4193 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4194 (dp4195 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4196 (dp4197 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp4198 (dp4199 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp4200 (dp4201 g18 g3 (g19 g5 (ltRp4202 (dp4203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4204 (dp4205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4206 (dp4207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4208 (dp4209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp4210 (dp4211 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp4212 (dp4213 g18 g3 (g19 g5 (ltRp4214 (dp4215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4216 (dp4217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4218 (dp4219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4220 (dp4221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp4222 (dp4223 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp4224 (dp4225 g18 g3 (g19 g5 (ltRp4226 (dp4227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4228 (dp4229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4230 (dp4231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4232 (dp4233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp4234 (dp4235 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp4236 (dp4237 g18 g3 (g19 g5 (ltRp4238 (dp4239 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4240 (dp4241 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4242 (dp4243 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4244 (dp4245 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp4246 (dp4247 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp4248 (dp4249 g18 g3 (g19 g5 (ltRp4250 (dp4251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4252 (dp4253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4254 (dp4255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4256 (dp4257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p4258 sg22 I00 sg37 g38 sg39 g4258 sbag3 (g7 g8 NtRp4259 (dp4260 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp4261 (dp4262 g18 g3 (g19 g5 (ltRp4263 (dp4264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4265 (dp4266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4267 (dp4268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4269 (dp4270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Request Precondition Failed (412)' p4271 sg22 I00 sg37 g38 sg39 g4271 sbag3 (g7 g8 NtRp4272 (dp4273 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp4274 (dp4275 g18 g3 (g19 g5 (ltRp4276 (dp4277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4278 (dp4279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4280 (dp4281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4282 (dp4283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p4284 sg22 I00 sg37 g38 sg39 g4284 sbag3 (g7 g8 NtRp4285 (dp4286 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp4287 (dp4288 g18 g3 (g19 g5 (ltRp4289 (dp4290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4291 (dp4292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4293 (dp4294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4295 (dp4296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp4297 (dp4298 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp4299 (dp4300 g18 g3 (g19 g5 (ltRp4301 (dp4302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4303 (dp4304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4305 (dp4306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4307 (dp4308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp4309 (dp4310 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp4311 (dp4312 g18 g3 (g19 g5 (ltRp4313 (dp4314 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4315 (dp4316 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4317 (dp4318 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4319 (dp4320 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions Active' p4321 sg22 I00 sg37 g38 sg39 g4321 sbag3 (g7 g8 NtRp4322 (dp4323 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp4324 (dp4325 g18 g3 (g19 g5 (ltRp4326 (dp4327 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4328 (dp4329 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4330 (dp4331 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4332 (dp4333 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Users Active' p4334 sg22 I00 sg37 g38 sg39 g4334 sbag3 (g7 g8 NtRp4335 (dp4336 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp4337 (dp4338 g18 g3 (g19 g5 (ltRp4339 (dp4340 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4341 (dp4342 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4343 (dp4344 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4345 (dp4346 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Received' p4347 sg22 I00 sg37 g38 sg39 g4347 sbag3 (g7 g8 NtRp4348 (dp4349 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp4350 (dp4351 g18 g3 (g19 g5 (ltRp4352 (dp4353 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4354 (dp4355 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4356 (dp4357 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4358 (dp4359 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Received' p4360 sg22 I00 sg37 g38 sg39 g4360 sbag3 (g7 g8 NtRp4361 (dp4362 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp4363 (dp4364 g18 g3 (g19 g5 (ltRp4365 (dp4366 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4367 (dp4368 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4369 (dp4370 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4371 (dp4372 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Received' p4373 sg22 I00 sg37 g38 sg39 g4373 sbag3 (g7 g8 NtRp4374 (dp4375 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp4376 (dp4377 g18 g3 (g19 g5 (ltRp4378 (dp4379 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4380 (dp4381 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4382 (dp4383 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4384 (dp4385 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Unrecognized Content-Encoding Received' p4386 sg22 I00 sg37 g38 sg39 g4386 sbag3 (g7 g8 NtRp4387 (dp4388 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp4389 (dp4390 g18 g3 (g19 g5 (ltRp4391 (dp4392 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4393 (dp4394 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4395 (dp4396 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4397 (dp4398 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Successful' p4399 sg22 I00 sg37 g38 sg39 g4399 sbag3 (g7 g8 NtRp4400 (dp4401 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp4402 (dp4403 g18 g3 (g19 g5 (ltRp4404 (dp4405 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4406 (dp4407 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4408 (dp4409 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4410 (dp4411 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Successful' p4412 sg22 I00 sg37 g38 sg39 g4412 sbag3 (g7 g8 NtRp4413 (dp4414 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp4415 (dp4416 g18 g3 (g19 g5 (ltRp4417 (dp4418 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4419 (dp4420 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4421 (dp4422 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4423 (dp4424 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Successful' p4425 sg22 I00 sg37 g38 sg39 g4425 sbag3 (g7 g8 NtRp4426 (dp4427 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp4428 (dp4429 g18 g3 (g19 g5 (ltRp4430 (dp4431 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4432 (dp4433 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4434 (dp4435 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4436 (dp4437 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Failed' p4438 sg22 I00 sg37 g38 sg39 g4438 sbag3 (g7 g8 NtRp4439 (dp4440 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp4441 (dp4442 g18 g3 (g19 g5 (ltRp4443 (dp4444 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4445 (dp4446 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4447 (dp4448 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4449 (dp4450 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed' p4451 sg22 I00 sg37 g38 sg39 g4451 sbag3 (g7 g8 NtRp4452 (dp4453 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp4454 (dp4455 g18 g3 (g19 g5 (ltRp4456 (dp4457 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4458 (dp4459 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4460 (dp4461 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4462 (dp4463 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed' p4464 sg22 I00 sg37 g38 sg39 g4464 sbag3 (g7 g8 NtRp4465 (dp4466 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp4467 (dp4468 g18 g3 (g19 g5 (ltRp4469 (dp4470 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4471 (dp4472 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4473 (dp4474 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4475 (dp4476 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Data Error' p4477 sg22 I00 sg37 g38 sg39 g4477 sbag3 (g7 g8 NtRp4478 (dp4479 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp4480 (dp4481 g18 g3 (g19 g5 (ltRp4482 (dp4483 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4484 (dp4485 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4486 (dp4487 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4488 (dp4489 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Decoding Error' p4490 sg22 I00 sg37 g38 sg39 g4490 sbag3 (g7 g8 NtRp4491 (dp4492 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp4493 (dp4494 g18 g3 (g19 g5 (ltRp4495 (dp4496 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4497 (dp4498 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4499 (dp4500 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4501 (dp4502 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Data Error' p4503 sg22 I00 sg37 g38 sg39 g4503 sbag3 (g7 g8 NtRp4504 (dp4505 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp4506 (dp4507 g18 g3 (g19 g5 (ltRp4508 (dp4509 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4510 (dp4511 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4512 (dp4513 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4514 (dp4515 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Decoding Error' p4516 sg22 I00 sg37 g38 sg39 g4516 sbag3 (g7 g8 NtRp4517 (dp4518 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp4519 (dp4520 g18 g3 (g19 g5 (ltRp4521 (dp4522 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4523 (dp4524 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4525 (dp4526 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4527 (dp4528 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Headers Received' p4529 sg22 I00 sg37 g38 sg39 g4529 sbag3 (g7 g8 NtRp4530 (dp4531 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp4532 (dp4533 g18 g3 (g19 g5 (ltRp4534 (dp4535 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4536 (dp4537 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4538 (dp4539 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4540 (dp4541 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Responses Received' p4542 sg22 I00 sg37 g38 sg39 g4542 sbag3 (g7 g8 NtRp4543 (dp4544 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp4545 (dp4546 g18 g3 (g19 g5 (ltRp4547 (dp4548 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4549 (dp4550 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4551 (dp4552 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4553 (dp4554 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Successful' p4555 sg22 I00 sg37 g38 sg39 g4555 sbag3 (g7 g8 NtRp4556 (dp4557 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp4558 (dp4559 g18 g3 (g19 g5 (ltRp4560 (dp4561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4562 (dp4563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4564 (dp4565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4566 (dp4567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Failed' p4568 sg22 I00 sg37 g38 sg39 g4568 sbag3 (g7 g8 NtRp4569 (dp4570 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp4571 (dp4572 g18 g3 (g19 g5 (ltRp4573 (dp4574 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4575 (dp4576 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4577 (dp4578 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4579 (dp4580 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Received' p4581 sg22 I00 sg37 g38 sg39 g4581 sbag3 (g7 g8 NtRp4582 (dp4583 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp4584 (dp4585 g18 g3 (g19 g5 (ltRp4586 (dp4587 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4588 (dp4589 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4590 (dp4591 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4592 (dp4593 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Headers Sent' p4594 sg22 I00 sg37 g38 sg39 g4594 sbag3 (g7 g8 NtRp4595 (dp4596 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp4597 (dp4598 g18 g3 (g19 g5 (ltRp4599 (dp4600 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4601 (dp4602 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4603 (dp4604 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4605 (dp4606 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Sent' p4607 sg22 I00 sg37 g38 sg39 g4607 sbag3 (g7 g8 NtRp4608 (dp4609 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp4610 (dp4611 g18 g3 (g19 g5 (ltRp4612 (dp4613 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4614 (dp4615 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4616 (dp4617 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4618 (dp4619 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Responses Received' p4620 sg22 I00 sg37 g38 sg39 g4620 sbag3 (g7 g8 NtRp4621 (dp4622 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp4623 (dp4624 g18 g3 (g19 g5 (ltRp4625 (dp4626 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4627 (dp4628 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4629 (dp4630 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4631 (dp4632 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Successful' p4633 sg22 I00 sg37 g38 sg39 g4633 sbag3 (g7 g8 NtRp4634 (dp4635 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp4636 (dp4637 g18 g3 (g19 g5 (ltRp4638 (dp4639 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4640 (dp4641 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4642 (dp4643 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4644 (dp4645 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Failed' p4646 sg22 I00 sg37 g38 sg39 g4646 sbag3 (g7 g8 NtRp4647 (dp4648 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp4649 (dp4650 g18 g3 (g19 g5 (ltRp4651 (dp4652 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4653 (dp4654 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4655 (dp4656 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4657 (dp4658 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Responses Received' p4659 sg22 I00 sg37 g38 sg39 g4659 sbag3 (g7 g8 NtRp4660 (dp4661 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp4662 (dp4663 g18 g3 (g19 g5 (ltRp4664 (dp4665 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4666 (dp4667 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4668 (dp4669 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4670 (dp4671 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Successful' p4672 sg22 I00 sg37 g38 sg39 g4672 sbag3 (g7 g8 NtRp4673 (dp4674 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp4675 (dp4676 g18 g3 (g19 g5 (ltRp4677 (dp4678 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4679 (dp4680 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4681 (dp4682 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4683 (dp4684 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Failed' p4685 sg22 I00 sg37 g38 sg39 g4685 sbag3 (g7 g8 NtRp4686 (dp4687 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp4688 (dp4689 g18 g3 (g19 g5 (ltRp4690 (dp4691 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4692 (dp4693 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4694 (dp4695 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4696 (dp4697 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p4698 sg22 I00 sg37 g38 sg39 g4698 sbag3 (g7 g8 NtRp4699 (dp4700 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp4701 (dp4702 g18 g3 (g19 g5 (ltRp4703 (dp4704 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4705 (dp4706 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4707 (dp4708 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4709 (dp4710 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p4711 sg22 I00 sg37 g38 sg39 g4711 sbag3 (g7 g8 NtRp4712 (dp4713 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp4714 (dp4715 g18 g3 (g19 g5 (ltRp4716 (dp4717 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4718 (dp4719 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4720 (dp4721 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4722 (dp4723 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p4724 sg22 I00 sg37 g38 sg39 g4724 sbag3 (g7 g8 NtRp4725 (dp4726 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp4727 (dp4728 g18 g3 (g19 g5 (ltRp4729 (dp4730 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4731 (dp4732 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4733 (dp4734 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4735 (dp4736 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p4737 sg22 I00 sg37 g38 sg39 g4737 sbag3 (g7 g8 NtRp4738 (dp4739 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp4740 (dp4741 g18 g3 (g19 g5 (ltRp4742 (dp4743 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4744 (dp4745 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4746 (dp4747 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4748 (dp4749 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Decompressed Content Bytes Received' p4750 sg22 I00 sg37 g38 sg39 g4750 sbag3 (g7 g8 NtRp4751 (dp4752 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp4753 (dp4754 g18 g3 (g19 g5 (ltRp4755 (dp4756 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4757 (dp4758 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4759 (dp4760 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4761 (dp4762 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p4763 sg22 I00 sg37 g38 sg39 g4763 sbag3 (g7 g8 NtRp4764 (dp4765 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp4766 (dp4767 g18 g3 (g19 g5 (ltRp4768 (dp4769 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4770 (dp4771 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4772 (dp4773 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4774 (dp4775 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p4776 sg22 I00 sg37 g38 sg39 g4776 sbag3 (g7 g8 NtRp4777 (dp4778 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp4779 (dp4780 g18 g3 (g19 g5 (ltRp4781 (dp4782 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4783 (dp4784 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4785 (dp4786 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4787 (dp4788 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected' p4789 sg22 I00 sg37 g38 sg39 g4789 sbag3 (g7 g8 NtRp4790 (dp4791 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp4792 (dp4793 g18 g3 (g19 g5 (ltRp4794 (dp4795 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4796 (dp4797 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4798 (dp4799 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4800 (dp4801 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Path Match Failed)' p4802 sg22 I00 sg37 g38 sg39 g4802 sbag3 (g7 g8 NtRp4803 (dp4804 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp4805 (dp4806 g18 g3 (g19 g5 (ltRp4807 (dp4808 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4809 (dp4810 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4811 (dp4812 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4813 (dp4814 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Domain Match Failed)' p4815 sg22 I00 sg37 g38 sg39 g4815 sbag3 (g7 g8 NtRp4816 (dp4817 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp4818 (dp4819 g18 g3 (g19 g5 (ltRp4820 (dp4821 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4822 (dp4823 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4824 (dp4825 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4826 (dp4827 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Cookiejar Overflow)' p4828 sg22 I00 sg37 g38 sg39 g4828 sbag3 (g7 g8 NtRp4829 (dp4830 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp4831 (dp4832 g18 g3 (g19 g5 (ltRp4833 (dp4834 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4835 (dp4836 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4837 (dp4838 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4839 (dp4840 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Probabilistic Reject)' p4841 sg22 I00 sg37 g38 sg39 g4841 sbag3 (g7 g8 NtRp4842 (dp4843 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp4844 (dp4845 g18 g3 (g19 g5 (ltRp4846 (dp4847 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4848 (dp4849 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4850 (dp4851 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4852 (dp4853 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookie headers Rejected - (Memory Overflow)' p4854 sg22 I00 sg37 g38 sg39 g4854 sbag3 (g7 g8 NtRp4855 (dp4856 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp4857 (dp4858 g18 g3 (g19 g5 (ltRp4859 (dp4860 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4861 (dp4862 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4863 (dp4864 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4865 (dp4866 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connect Time (us)' p4867 sg22 I00 sg37 g261 sg39 g4867 sbag3 (g7 g8 NtRp4868 (dp4869 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp4870 (dp4871 g18 g3 (g19 g5 (ltRp4872 (dp4873 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4874 (dp4875 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4876 (dp4877 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4878 (dp4879 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To First Byte (us)' p4880 sg22 I00 sg37 g261 sg39 g4880 sbag3 (g7 g8 NtRp4881 (dp4882 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp4883 (dp4884 g18 g3 (g19 g5 (ltRp4885 (dp4886 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4887 (dp4888 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4889 (dp4890 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4891 (dp4892 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To Last Byte (us)' p4893 sg22 I00 sg37 g261 sg39 g4893 sbag3 (g7 g8 NtRp4894 (dp4895 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp4896 (dp4897 g18 g3 (g19 g5 (ltRp4898 (dp4899 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4900 (dp4901 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4902 (dp4903 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4904 (dp4905 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Average (us)' p4906 sg22 I00 sg37 g261 sg39 g4906 sbag3 (g7 g8 NtRp4907 (dp4908 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp4909 (dp4910 g18 g3 (g19 g5 (ltRp4911 (dp4912 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4913 (dp4914 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4915 (dp4916 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4917 (dp4918 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Minimum (us)' p4919 sg22 I00 sg37 g38 sg39 g4919 sbag3 (g7 g8 NtRp4920 (dp4921 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp4922 (dp4923 g18 g3 (g19 g5 (ltRp4924 (dp4925 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4926 (dp4927 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4928 (dp4929 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4930 (dp4931 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Maximum (us)' p4932 sg22 I00 sg37 g38 sg39 g4932 sbag3 (g7 g8 NtRp4933 (dp4934 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp4935 (dp4936 g18 g3 (g19 g5 (ltRp4937 (dp4938 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4939 (dp4940 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4941 (dp4942 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4943 (dp4944 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Failed' p4945 sg22 I00 sg37 g38 sg39 g4945 sbag3 (g7 g8 NtRp4946 (dp4947 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp4948 (dp4949 g18 g3 (g19 g5 (ltRp4950 (dp4951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4952 (dp4953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4954 (dp4955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4956 (dp4957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Succeeded' p4958 sg22 I00 sg37 g38 sg39 g4958 sbag3 (g7 g8 NtRp4959 (dp4960 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp4961 (dp4962 g18 g3 (g19 g5 (ltRp4963 (dp4964 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4965 (dp4966 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4967 (dp4968 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4969 (dp4970 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Received' p4971 sg22 I00 sg37 g38 sg39 g4971 sbag3 (g7 g8 NtRp4972 (dp4973 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp4974 (dp4975 g18 g3 (g19 g5 (ltRp4976 (dp4977 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4978 (dp4979 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4980 (dp4981 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4982 (dp4983 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Received' p4984 sg22 I00 sg37 g38 sg39 g4984 sbag3 (g7 g8 NtRp4985 (dp4986 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp4987 (dp4988 g18 g3 (g19 g5 (ltRp4989 (dp4990 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4991 (dp4992 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4993 (dp4994 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4995 (dp4996 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Received' p4997 sg22 I00 sg37 g38 sg39 g4997 sbag3 (g7 g8 NtRp4998 (dp4999 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp5000 (dp5001 g18 g3 (g19 g5 (ltRp5002 (dp5003 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5004 (dp5005 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5006 (dp5007 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5008 (dp5009 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Received' p5010 sg22 I00 sg37 g38 sg39 g5010 sbag3 (g7 g8 NtRp5011 (dp5012 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp5013 (dp5014 g18 g3 (g19 g5 (ltRp5015 (dp5016 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5017 (dp5018 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5019 (dp5020 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5021 (dp5022 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Received' p5023 sg22 I00 sg37 g38 sg39 g5023 sbag3 (g7 g8 NtRp5024 (dp5025 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp5026 (dp5027 g18 g3 (g19 g5 (ltRp5028 (dp5029 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5030 (dp5031 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5032 (dp5033 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5034 (dp5035 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Received' p5036 sg22 I00 sg37 g38 sg39 g5036 sbag3 (g7 g8 NtRp5037 (dp5038 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp5039 (dp5040 g18 g3 (g19 g5 (ltRp5041 (dp5042 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5043 (dp5044 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5045 (dp5046 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5047 (dp5048 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Received' p5049 sg22 I00 sg37 g38 sg39 g5049 sbag3 (g7 g8 NtRp5050 (dp5051 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp5052 (dp5053 g18 g3 (g19 g5 (ltRp5054 (dp5055 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5056 (dp5057 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5058 (dp5059 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5060 (dp5061 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Received' p5062 sg22 I00 sg37 g38 sg39 g5062 sbag3 (g7 g8 NtRp5063 (dp5064 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp5065 (dp5066 g18 g3 (g19 g5 (ltRp5067 (dp5068 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5069 (dp5070 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5071 (dp5072 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5073 (dp5074 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Received' p5075 sg22 I00 sg37 g38 sg39 g5075 sbag3 (g7 g8 NtRp5076 (dp5077 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp5078 (dp5079 g18 g3 (g19 g5 (ltRp5080 (dp5081 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5082 (dp5083 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5084 (dp5085 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5086 (dp5087 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Received' p5088 sg22 I00 sg37 g38 sg39 g5088 sbag3 (g7 g8 NtRp5089 (dp5090 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp5091 (dp5092 g18 g3 (g19 g5 (ltRp5093 (dp5094 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5095 (dp5096 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5097 (dp5098 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5099 (dp5100 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Sent' p5101 sg22 I00 sg37 g38 sg39 g5101 sbag3 (g7 g8 NtRp5102 (dp5103 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp5104 (dp5105 g18 g3 (g19 g5 (ltRp5106 (dp5107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5108 (dp5109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5110 (dp5111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5112 (dp5113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Sent' p5114 sg22 I00 sg37 g38 sg39 g5114 sbag3 (g7 g8 NtRp5115 (dp5116 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp5117 (dp5118 g18 g3 (g19 g5 (ltRp5119 (dp5120 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5121 (dp5122 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5123 (dp5124 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5125 (dp5126 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Sent' p5127 sg22 I00 sg37 g38 sg39 g5127 sbag3 (g7 g8 NtRp5128 (dp5129 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp5130 (dp5131 g18 g3 (g19 g5 (ltRp5132 (dp5133 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5134 (dp5135 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5136 (dp5137 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5138 (dp5139 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Sent' p5140 sg22 I00 sg37 g38 sg39 g5140 sbag3 (g7 g8 NtRp5141 (dp5142 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp5143 (dp5144 g18 g3 (g19 g5 (ltRp5145 (dp5146 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5147 (dp5148 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5149 (dp5150 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5151 (dp5152 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Sent' p5153 sg22 I00 sg37 g38 sg39 g5153 sbag3 (g7 g8 NtRp5154 (dp5155 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp5156 (dp5157 g18 g3 (g19 g5 (ltRp5158 (dp5159 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5160 (dp5161 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5162 (dp5163 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5164 (dp5165 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Sent' p5166 sg22 I00 sg37 g38 sg39 g5166 sbag3 (g7 g8 NtRp5167 (dp5168 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp5169 (dp5170 g18 g3 (g19 g5 (ltRp5171 (dp5172 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5173 (dp5174 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5175 (dp5176 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5177 (dp5178 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Sent' p5179 sg22 I00 sg37 g38 sg39 g5179 sbag3 (g7 g8 NtRp5180 (dp5181 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp5182 (dp5183 g18 g3 (g19 g5 (ltRp5184 (dp5185 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5186 (dp5187 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5188 (dp5189 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5190 (dp5191 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Sent' p5192 sg22 I00 sg37 g38 sg39 g5192 sbag3 (g7 g8 NtRp5193 (dp5194 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp5195 (dp5196 g18 g3 (g19 g5 (ltRp5197 (dp5198 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5199 (dp5200 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5201 (dp5202 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5203 (dp5204 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Sent' p5205 sg22 I00 sg37 g38 sg39 g5205 sbag3 (g7 g8 NtRp5206 (dp5207 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp5208 (dp5209 g18 g3 (g19 g5 (ltRp5210 (dp5211 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5212 (dp5213 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5214 (dp5215 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5216 (dp5217 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Sent' p5218 sg22 I00 sg37 g38 sg39 g5218 sbag3 (g7 g8 NtRp5219 (dp5220 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp5221 (dp5222 g18 g3 (g19 g5 (ltRp5223 (dp5224 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5225 (dp5226 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5227 (dp5228 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5229 (dp5230 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Client' p5231 sg22 I00 sg37 g38 sg39 g5231 sbag3 (g7 g8 NtRp5232 (dp5233 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp5234 (dp5235 g18 g3 (g19 g5 (ltRp5236 (dp5237 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5238 (dp5239 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5240 (dp5241 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5242 (dp5243 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Server' p5244 sg22 I00 sg37 g38 sg39 g5244 sbag3 (g7 g8 NtRp5245 (dp5246 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp5247 (dp5248 g18 g3 (g19 g5 (ltRp5249 (dp5250 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5251 (dp5252 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5253 (dp5254 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5255 (dp5256 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Client to Server)' p5257 sg22 I00 sg37 g38 sg39 g5257 sbag3 (g7 g8 NtRp5258 (dp5259 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp5260 (dp5261 g18 g3 (g19 g5 (ltRp5262 (dp5263 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5264 (dp5265 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5266 (dp5267 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5268 (dp5269 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Server to Client)' p5270 sg22 I00 sg37 g38 sg39 g5270 sbag3 (g7 g8 NtRp5271 (dp5272 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp5273 (dp5274 g18 g3 (g19 g5 (ltRp5275 (dp5276 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5277 (dp5278 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5279 (dp5280 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5281 (dp5282 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Client to Server)' p5283 sg22 I00 sg37 g38 sg39 g5283 sbag3 (g7 g8 NtRp5284 (dp5285 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp5286 (dp5287 g18 g3 (g19 g5 (ltRp5288 (dp5289 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5290 (dp5291 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5292 (dp5293 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5294 (dp5295 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Server to Client)' p5296 sg22 I00 sg37 g38 sg39 g5296 sbag3 (g7 g8 NtRp5297 (dp5298 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp5299 (dp5300 g18 g3 (g19 g5 (ltRp5301 (dp5302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5303 (dp5304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5305 (dp5306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5307 (dp5308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Succeeded' p5309 sg22 I00 sg37 g38 sg39 g5309 sbag3 (g7 g8 NtRp5310 (dp5311 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp5312 (dp5313 g18 g3 (g19 g5 (ltRp5314 (dp5315 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5316 (dp5317 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5318 (dp5319 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5320 (dp5321 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Failed' p5322 sg22 I00 sg37 g38 sg39 g5322 sbag3 (g7 g8 NtRp5323 (dp5324 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp5325 (dp5326 g18 g3 (g19 g5 (ltRp5327 (dp5328 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5329 (dp5330 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5331 (dp5332 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5333 (dp5334 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Protocol Error' p5335 sg22 I00 sg37 g38 sg39 g5335 sbag3 (g7 g8 NtRp5336 (dp5337 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp5338 (dp5339 g18 g3 (g19 g5 (ltRp5340 (dp5341 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5342 (dp5343 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5344 (dp5345 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5346 (dp5347 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Internal Error' p5348 sg22 I00 sg37 g38 sg39 g5348 sbag3 (g7 g8 NtRp5349 (dp5350 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp5351 (dp5352 g18 g3 (g19 g5 (ltRp5353 (dp5354 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5355 (dp5356 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5357 (dp5358 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5359 (dp5360 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Flow Control Error' p5361 sg22 I00 sg37 g38 sg39 g5361 sbag3 (g7 g8 NtRp5362 (dp5363 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp5364 (dp5365 g18 g3 (g19 g5 (ltRp5366 (dp5367 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5368 (dp5369 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5370 (dp5371 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5372 (dp5373 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Timeout Error' p5374 sg22 I00 sg37 g38 sg39 g5374 sbag3 (g7 g8 NtRp5375 (dp5376 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp5377 (dp5378 g18 g3 (g19 g5 (ltRp5379 (dp5380 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5381 (dp5382 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5383 (dp5384 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5385 (dp5386 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Closed Error' p5387 sg22 I00 sg37 g38 sg39 g5387 sbag3 (g7 g8 NtRp5388 (dp5389 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp5390 (dp5391 g18 g3 (g19 g5 (ltRp5392 (dp5393 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5394 (dp5395 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5396 (dp5397 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5398 (dp5399 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Frame Size Error' p5400 sg22 I00 sg37 g38 sg39 g5400 sbag3 (g7 g8 NtRp5401 (dp5402 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp5403 (dp5404 g18 g3 (g19 g5 (ltRp5405 (dp5406 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5407 (dp5408 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5409 (dp5410 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5411 (dp5412 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Refused Stream Error' p5413 sg22 I00 sg37 g38 sg39 g5413 sbag3 (g7 g8 NtRp5414 (dp5415 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp5416 (dp5417 g18 g3 (g19 g5 (ltRp5418 (dp5419 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5420 (dp5421 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5422 (dp5423 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5424 (dp5425 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Cancelled Error' p5426 sg22 I00 sg37 g38 sg39 g5426 sbag3 (g7 g8 NtRp5427 (dp5428 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp5429 (dp5430 g18 g3 (g19 g5 (ltRp5431 (dp5432 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5433 (dp5434 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5435 (dp5436 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5437 (dp5438 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Compression Error' p5439 sg22 I00 sg37 g38 sg39 g5439 sbag3 (g7 g8 NtRp5440 (dp5441 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp5442 (dp5443 g18 g3 (g19 g5 (ltRp5444 (dp5445 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5446 (dp5447 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5448 (dp5449 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5450 (dp5451 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connect Error' p5452 sg22 I00 sg37 g38 sg39 g5452 sbag3 (g7 g8 NtRp5453 (dp5454 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp5455 (dp5456 g18 g3 (g19 g5 (ltRp5457 (dp5458 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5459 (dp5460 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5461 (dp5462 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5463 (dp5464 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Enhance Calm Error' p5465 sg22 I00 sg37 g38 sg39 g5465 sbag3 (g7 g8 NtRp5466 (dp5467 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp5468 (dp5469 g18 g3 (g19 g5 (ltRp5470 (dp5471 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5472 (dp5473 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5474 (dp5475 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5476 (dp5477 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Inadequate Security Error' p5478 sg22 I00 sg37 g38 sg39 g5478 sbag3 (g7 g8 NtRp5479 (dp5480 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp5481 (dp5482 g18 g3 (g19 g5 (ltRp5483 (dp5484 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5485 (dp5486 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5487 (dp5488 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5489 (dp5490 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 HTTP1_1 Required Error' p5491 sg22 I00 sg37 g38 sg39 g5491 sbag3 (g7 g8 NtRp5492 (dp5493 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp5494 (dp5495 g18 g3 (g19 g5 (ltRp5496 (dp5497 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5498 (dp5499 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5500 (dp5501 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5502 (dp5503 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p5504 sg22 I00 sg37 g38 sg39 g5504 sbag3 (g7 g8 NtRp5505 (dp5506 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp5507 (dp5508 g18 g3 (g19 g5 (ltRp5509 (dp5510 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5511 (dp5512 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5513 (dp5514 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5515 (dp5516 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p5517 sg22 I00 sg37 g38 sg39 g5517 sbag3 (g7 g8 NtRp5518 (dp5519 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp5520 (dp5521 g18 g3 (g19 g5 (ltRp5522 (dp5523 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5524 (dp5525 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5526 (dp5527 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5528 (dp5529 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p5530 sg22 I00 sg37 g38 sg39 g5530 sbag3 (g7 g8 NtRp5531 (dp5532 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp5533 (dp5534 g18 g3 (g19 g5 (ltRp5535 (dp5536 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5537 (dp5538 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5539 (dp5540 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5541 (dp5542 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p5543 sg22 I00 sg37 g38 sg39 g5543 sbag3 (g7 g8 NtRp5544 (dp5545 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp5546 (dp5547 g18 g3 (g19 g5 (ltRp5548 (dp5549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5550 (dp5551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5552 (dp5553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5554 (dp5555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p5556 sg22 I00 sg37 g38 sg39 g5556 sbag3 (g7 g8 NtRp5557 (dp5558 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp5559 (dp5560 g18 g3 (g19 g5 (ltRp5561 (dp5562 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5563 (dp5564 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5565 (dp5566 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5567 (dp5568 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p5569 sg22 I00 sg37 g38 sg39 g5569 sbag3 (g7 g8 NtRp5570 (dp5571 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp5572 (dp5573 g18 g3 (g19 g5 (ltRp5574 (dp5575 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5576 (dp5577 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5578 (dp5579 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5580 (dp5581 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p5582 sg22 I00 sg37 g38 sg39 g5582 sbag3 (g7 g8 NtRp5583 (dp5584 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp5585 (dp5586 g18 g3 (g19 g5 (ltRp5587 (dp5588 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5589 (dp5590 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5591 (dp5592 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5593 (dp5594 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p5595 sg22 I00 sg37 g38 sg39 g5595 sbag3 (g7 g8 NtRp5596 (dp5597 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp5598 (dp5599 g18 g3 (g19 g5 (ltRp5600 (dp5601 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5602 (dp5603 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5604 (dp5605 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5606 (dp5607 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p5608 sg22 I00 sg37 g38 sg39 g5608 sbag3 (g7 g8 NtRp5609 (dp5610 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp5611 (dp5612 g18 g3 (g19 g5 (ltRp5613 (dp5614 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5615 (dp5616 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5617 (dp5618 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5619 (dp5620 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p5621 sg22 I00 sg37 g38 sg39 g5621 sbag3 (g7 g8 NtRp5622 (dp5623 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp5624 (dp5625 g18 g3 (g19 g5 (ltRp5626 (dp5627 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5628 (dp5629 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5630 (dp5631 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5632 (dp5633 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p5634 sg22 I00 sg37 g38 sg39 g5634 sbag3 (g7 g8 NtRp5635 (dp5636 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp5637 (dp5638 g18 g3 (g19 g5 (ltRp5639 (dp5640 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5641 (dp5642 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5643 (dp5644 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5645 (dp5646 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p5647 sg22 I00 sg37 g38 sg39 g5647 sbag3 (g7 g8 NtRp5648 (dp5649 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp5650 (dp5651 g18 g3 (g19 g5 (ltRp5652 (dp5653 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5654 (dp5655 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5656 (dp5657 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5658 (dp5659 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p5660 sg22 I00 sg37 g38 sg39 g5660 sbag3 (g7 g8 NtRp5661 (dp5662 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp5663 (dp5664 g18 g3 (g19 g5 (ltRp5665 (dp5666 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5667 (dp5668 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5669 (dp5670 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5671 (dp5672 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p5673 sg22 I00 sg37 g38 sg39 g5673 sbag3 (g7 g8 NtRp5674 (dp5675 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp5676 (dp5677 g18 g3 (g19 g5 (ltRp5678 (dp5679 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5680 (dp5681 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5682 (dp5683 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5684 (dp5685 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p5686 sg22 I00 sg37 g38 sg39 g5686 sbag3 (g7 g8 NtRp5687 (dp5688 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp5689 (dp5690 g18 g3 (g19 g5 (ltRp5691 (dp5692 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5693 (dp5694 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5695 (dp5696 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5697 (dp5698 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p5699 sg22 I00 sg37 g38 sg39 g5699 sbag3 (g7 g8 NtRp5700 (dp5701 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp5702 (dp5703 g18 g3 (g19 g5 (ltRp5704 (dp5705 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5706 (dp5707 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5708 (dp5709 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5710 (dp5711 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p5712 sg22 I00 sg37 g38 sg39 g5712 sbag3 (g7 g8 NtRp5713 (dp5714 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp5715 (dp5716 g18 g3 (g19 g5 (ltRp5717 (dp5718 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5719 (dp5720 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5721 (dp5722 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5723 (dp5724 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p5725 sg22 I00 sg37 g38 sg39 g5725 sbag3 (g7 g8 NtRp5726 (dp5727 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp5728 (dp5729 g18 g3 (g19 g5 (ltRp5730 (dp5731 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5732 (dp5733 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5734 (dp5735 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5736 (dp5737 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p5738 sg22 I00 sg37 g38 sg39 g5738 sbag3 (g7 g8 NtRp5739 (dp5740 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp5741 (dp5742 g18 g3 (g19 g5 (ltRp5743 (dp5744 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5745 (dp5746 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5747 (dp5748 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5749 (dp5750 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p5751 sg22 I00 sg37 g38 sg39 g5751 sbag3 (g7 g8 NtRp5752 (dp5753 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp5754 (dp5755 g18 g3 (g19 g5 (ltRp5756 (dp5757 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5758 (dp5759 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5760 (dp5761 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5762 (dp5763 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p5764 sg22 I00 sg37 g38 sg39 g5764 sbag3 (g7 g8 NtRp5765 (dp5766 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp5767 (dp5768 g18 g3 (g19 g5 (ltRp5769 (dp5770 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5771 (dp5772 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5773 (dp5774 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5775 (dp5776 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p5777 sg22 I00 sg37 g38 sg39 g5777 sbag3 (g7 g8 NtRp5778 (dp5779 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp5780 (dp5781 g18 g3 (g19 g5 (ltRp5782 (dp5783 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5784 (dp5785 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5786 (dp5787 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5788 (dp5789 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p5790 sg22 I00 sg37 g38 sg39 g5790 sbag3 (g7 g8 NtRp5791 (dp5792 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp5793 (dp5794 g18 g3 (g19 g5 (ltRp5795 (dp5796 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5797 (dp5798 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5799 (dp5800 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5801 (dp5802 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p5803 sg22 I00 sg37 g38 sg39 g5803 sbag3 (g7 g8 NtRp5804 (dp5805 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp5806 (dp5807 g18 g3 (g19 g5 (ltRp5808 (dp5809 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5810 (dp5811 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5812 (dp5813 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5814 (dp5815 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p5816 sg22 I00 sg37 g38 sg39 g5816 sbag3 (g7 g8 NtRp5817 (dp5818 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp5819 (dp5820 g18 g3 (g19 g5 (ltRp5821 (dp5822 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5823 (dp5824 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5825 (dp5826 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5827 (dp5828 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p5829 sg22 I00 sg37 g38 sg39 g5829 sbag3 (g7 g8 NtRp5830 (dp5831 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp5832 (dp5833 g18 g3 (g19 g5 (ltRp5834 (dp5835 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5836 (dp5837 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5838 (dp5839 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5840 (dp5841 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p5842 sg22 I00 sg37 g38 sg39 g5842 sbag3 (g7 g8 NtRp5843 (dp5844 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp5845 (dp5846 g18 g3 (g19 g5 (ltRp5847 (dp5848 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5849 (dp5850 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5851 (dp5852 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5853 (dp5854 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p5855 sg22 I00 sg37 g38 sg39 g5855 sbag3 (g7 g8 NtRp5856 (dp5857 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp5858 (dp5859 g18 g3 (g19 g5 (ltRp5860 (dp5861 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5862 (dp5863 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5864 (dp5865 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5866 (dp5867 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p5868 sg22 I00 sg37 g38 sg39 g5868 sbag3 (g7 g8 NtRp5869 (dp5870 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp5871 (dp5872 g18 g3 (g19 g5 (ltRp5873 (dp5874 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5875 (dp5876 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5877 (dp5878 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5879 (dp5880 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p5881 sg22 I00 sg37 g38 sg39 g5881 sbag3 (g7 g8 NtRp5882 (dp5883 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp5884 (dp5885 g18 g3 (g19 g5 (ltRp5886 (dp5887 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5888 (dp5889 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5890 (dp5891 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5892 (dp5893 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p5894 sg22 I00 sg37 g38 sg39 g5894 sbag3 (g7 g8 NtRp5895 (dp5896 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp5897 (dp5898 g18 g3 (g19 g5 (ltRp5899 (dp5900 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5901 (dp5902 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5903 (dp5904 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5905 (dp5906 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p5907 sg22 I00 sg37 g38 sg39 g5907 sbag3 (g7 g8 NtRp5908 (dp5909 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp5910 (dp5911 g18 g3 (g19 g5 (ltRp5912 (dp5913 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5914 (dp5915 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5916 (dp5917 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5918 (dp5919 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p5920 sg22 I00 sg37 g38 sg39 g5920 sbag3 (g7 g8 NtRp5921 (dp5922 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp5923 (dp5924 g18 g3 (g19 g5 (ltRp5925 (dp5926 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5927 (dp5928 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5929 (dp5930 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5931 (dp5932 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p5933 sg22 I00 sg37 g38 sg39 g5933 sbag3 (g7 g8 NtRp5934 (dp5935 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp5936 (dp5937 g18 g3 (g19 g5 (ltRp5938 (dp5939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5940 (dp5941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5942 (dp5943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5944 (dp5945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p5946 sg22 I00 sg37 g38 sg39 g5946 sbag3 (g7 g8 NtRp5947 (dp5948 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp5949 (dp5950 g18 g3 (g19 g5 (ltRp5951 (dp5952 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5953 (dp5954 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5955 (dp5956 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5957 (dp5958 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p5959 sg22 I00 sg37 g38 sg39 g5959 sbag3 (g7 g8 NtRp5960 (dp5961 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp5962 (dp5963 g18 g3 (g19 g5 (ltRp5964 (dp5965 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5966 (dp5967 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5968 (dp5969 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5970 (dp5971 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p5972 sg22 I00 sg37 g38 sg39 g5972 sbag3 (g7 g8 NtRp5973 (dp5974 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp5975 (dp5976 g18 g3 (g19 g5 (ltRp5977 (dp5978 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5979 (dp5980 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5981 (dp5982 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5983 (dp5984 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p5985 sg22 I00 sg37 g38 sg39 g5985 sbag3 (g7 g8 NtRp5986 (dp5987 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp5988 (dp5989 g18 g3 (g19 g5 (ltRp5990 (dp5991 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5992 (dp5993 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5994 (dp5995 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5996 (dp5997 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p5998 sg22 I00 sg37 g38 sg39 g5998 sbag3 (g7 g8 NtRp5999 (dp6000 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp6001 (dp6002 g18 g3 (g19 g5 (ltRp6003 (dp6004 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6005 (dp6006 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6007 (dp6008 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6009 (dp6010 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p6011 sg22 I00 sg37 g38 sg39 g6011 sbag3 (g7 g8 NtRp6012 (dp6013 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp6014 (dp6015 g18 g3 (g19 g5 (ltRp6016 (dp6017 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6018 (dp6019 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6020 (dp6021 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6022 (dp6023 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p6024 sg22 I00 sg37 g38 sg39 g6024 sbag3 (g7 g8 NtRp6025 (dp6026 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp6027 (dp6028 g18 g3 (g19 g5 (ltRp6029 (dp6030 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6031 (dp6032 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6033 (dp6034 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6035 (dp6036 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p6037 sg22 I00 sg37 g38 sg39 g6037 sbag3 (g7 g8 NtRp6038 (dp6039 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp6040 (dp6041 g18 g3 (g19 g5 (ltRp6042 (dp6043 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6044 (dp6045 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6046 (dp6047 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6048 (dp6049 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p6050 sg22 I00 sg37 g38 sg39 g6050 sbag3 (g7 g8 NtRp6051 (dp6052 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp6053 (dp6054 g18 g3 (g19 g5 (ltRp6055 (dp6056 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6057 (dp6058 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6059 (dp6060 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6061 (dp6062 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p6063 sg22 I00 sg37 g38 sg39 g6063 sbag3 (g7 g8 NtRp6064 (dp6065 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp6066 (dp6067 g18 g3 (g19 g5 (ltRp6068 (dp6069 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6070 (dp6071 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6072 (dp6073 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6074 (dp6075 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p6076 sg22 I00 sg37 g38 sg39 g6076 sbag3 (g7 g8 NtRp6077 (dp6078 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp6079 (dp6080 g18 g3 (g19 g5 (ltRp6081 (dp6082 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6083 (dp6084 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6085 (dp6086 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6087 (dp6088 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p6089 sg22 I00 sg37 g38 sg39 g6089 sbag3 (g7 g8 NtRp6090 (dp6091 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp6092 (dp6093 g18 g3 (g19 g5 (ltRp6094 (dp6095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6096 (dp6097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6098 (dp6099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6100 (dp6101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p6102 sg22 I00 sg37 g38 sg39 g6102 sbag3 (g7 g8 NtRp6103 (dp6104 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp6105 (dp6106 g18 g3 (g19 g5 (ltRp6107 (dp6108 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6109 (dp6110 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6111 (dp6112 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6113 (dp6114 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p6115 sg22 I00 sg37 g38 sg39 g6115 sbag3 (g7 g8 NtRp6116 (dp6117 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp6118 (dp6119 g18 g3 (g19 g5 (ltRp6120 (dp6121 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6122 (dp6123 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6124 (dp6125 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6126 (dp6127 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p6128 sg22 I00 sg37 g38 sg39 g6128 sbag3 (g7 g8 NtRp6129 (dp6130 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp6131 (dp6132 g18 g3 (g19 g5 (ltRp6133 (dp6134 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6135 (dp6136 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6137 (dp6138 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6139 (dp6140 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p6141 sg22 I00 sg37 g38 sg39 g6141 sbag3 (g7 g8 NtRp6142 (dp6143 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp6144 (dp6145 g18 g3 (g19 g5 (ltRp6146 (dp6147 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6148 (dp6149 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6150 (dp6151 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6152 (dp6153 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p6154 sg22 I00 sg37 g38 sg39 g6154 sbag3 (g7 g8 NtRp6155 (dp6156 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp6157 (dp6158 g18 g3 (g19 g5 (ltRp6159 (dp6160 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6161 (dp6162 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6163 (dp6164 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6165 (dp6166 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p6167 sg22 I00 sg37 g38 sg39 g6167 sbag3 (g7 g8 NtRp6168 (dp6169 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp6170 (dp6171 g18 g3 (g19 g5 (ltRp6172 (dp6173 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6174 (dp6175 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6176 (dp6177 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6178 (dp6179 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p6180 sg22 I00 sg37 g38 sg39 g6180 sbag3 (g7 g8 NtRp6181 (dp6182 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp6183 (dp6184 g18 g3 (g19 g5 (ltRp6185 (dp6186 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6187 (dp6188 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6189 (dp6190 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6191 (dp6192 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p6193 sg22 I00 sg37 g38 sg39 g6193 sbag3 (g7 g8 NtRp6194 (dp6195 g11 Nsg12 I186 sg13 I01 sg14 g3 (g15 g8 NtRp6196 (dp6197 g18 g3 (g19 g5 (ltRp6198 (dp6199 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6200 (dp6201 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6202 (dp6203 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6204 (dp6205 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p6206 sg22 I00 sg37 g38 sg39 g6206 sbag3 (g7 g8 NtRp6207 (dp6208 g11 Nsg12 I187 sg13 I01 sg14 g3 (g15 g8 NtRp6209 (dp6210 g18 g3 (g19 g5 (ltRp6211 (dp6212 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6213 (dp6214 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6215 (dp6216 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6217 (dp6218 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p6219 sg22 I00 sg37 g38 sg39 g6219 sbag3 (g7 g8 NtRp6220 (dp6221 g11 Nsg12 I188 sg13 I01 sg14 g3 (g15 g8 NtRp6222 (dp6223 g18 g3 (g19 g5 (ltRp6224 (dp6225 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6226 (dp6227 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6228 (dp6229 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6230 (dp6231 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p6232 sg22 I00 sg37 g38 sg39 g6232 sbag3 (g7 g8 NtRp6233 (dp6234 g11 Nsg12 I189 sg13 I01 sg14 g3 (g15 g8 NtRp6235 (dp6236 g18 g3 (g19 g5 (ltRp6237 (dp6238 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6239 (dp6240 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6241 (dp6242 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6243 (dp6244 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p6245 sg22 I00 sg37 g38 sg39 g6245 sbag3 (g7 g8 NtRp6246 (dp6247 g11 Nsg12 I190 sg13 I01 sg14 g3 (g15 g8 NtRp6248 (dp6249 g18 g3 (g19 g5 (ltRp6250 (dp6251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6252 (dp6253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6254 (dp6255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6256 (dp6257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p6258 sg22 I00 sg37 g38 sg39 g6258 sbag3 (g7 g8 NtRp6259 (dp6260 g11 Nsg12 I191 sg13 I01 sg14 g3 (g15 g8 NtRp6261 (dp6262 g18 g3 (g19 g5 (ltRp6263 (dp6264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6265 (dp6266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6267 (dp6268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6269 (dp6270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p6271 sg22 I00 sg37 g38 sg39 g6271 sbag3 (g7 g8 NtRp6272 (dp6273 g11 Nsg12 I192 sg13 I01 sg14 g3 (g15 g8 NtRp6274 (dp6275 g18 g3 (g19 g5 (ltRp6276 (dp6277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6278 (dp6279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6280 (dp6281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6282 (dp6283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p6284 sg22 I00 sg37 g38 sg39 g6284 sbag3 (g7 g8 NtRp6285 (dp6286 g11 Nsg12 I193 sg13 I01 sg14 g3 (g15 g8 NtRp6287 (dp6288 g18 g3 (g19 g5 (ltRp6289 (dp6290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6291 (dp6292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6293 (dp6294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6295 (dp6296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p6297 sg22 I00 sg37 g38 sg39 g6297 sbag3 (g7 g8 NtRp6298 (dp6299 g11 Nsg12 I194 sg13 I01 sg14 g3 (g15 g8 NtRp6300 (dp6301 g18 g3 (g19 g5 (ltRp6302 (dp6303 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6304 (dp6305 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6306 (dp6307 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6308 (dp6309 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p6310 sg22 I00 sg37 g38 sg39 g6310 sbag3 (g7 g8 NtRp6311 (dp6312 g11 Nsg12 I195 sg13 I01 sg14 g3 (g15 g8 NtRp6313 (dp6314 g18 g3 (g19 g5 (ltRp6315 (dp6316 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6317 (dp6318 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6319 (dp6320 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6321 (dp6322 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p6323 sg22 I00 sg37 g38 sg39 g6323 sbag3 (g7 g8 NtRp6324 (dp6325 g11 Nsg12 I196 sg13 I01 sg14 g3 (g15 g8 NtRp6326 (dp6327 g18 g3 (g19 g5 (ltRp6328 (dp6329 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6330 (dp6331 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6332 (dp6333 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6334 (dp6335 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p6336 sg22 I00 sg37 g38 sg39 g6336 sbag3 (g7 g8 NtRp6337 (dp6338 g11 Nsg12 I197 sg13 I01 sg14 g3 (g15 g8 NtRp6339 (dp6340 g18 g3 (g19 g5 (ltRp6341 (dp6342 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6343 (dp6344 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6345 (dp6346 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6347 (dp6348 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p6349 sg22 I00 sg37 g38 sg39 g6349 sbag3 (g7 g8 NtRp6350 (dp6351 g11 Nsg12 I198 sg13 I01 sg14 g3 (g15 g8 NtRp6352 (dp6353 g18 g3 (g19 g5 (ltRp6354 (dp6355 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6356 (dp6357 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6358 (dp6359 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6360 (dp6361 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p6362 sg22 I00 sg37 g38 sg39 g6362 sbag3 (g7 g8 NtRp6363 (dp6364 g11 Nsg12 I199 sg13 I01 sg14 g3 (g15 g8 NtRp6365 (dp6366 g18 g3 (g19 g5 (ltRp6367 (dp6368 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6369 (dp6370 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6371 (dp6372 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6373 (dp6374 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p6375 sg22 I00 sg37 g38 sg39 g6375 sbag3 (g7 g8 NtRp6376 (dp6377 g11 Nsg12 I200 sg13 I01 sg14 g3 (g15 g8 NtRp6378 (dp6379 g18 g3 (g19 g5 (ltRp6380 (dp6381 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6382 (dp6383 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6384 (dp6385 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6386 (dp6387 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p6388 sg22 I00 sg37 g38 sg39 g6388 sbag3 (g7 g8 NtRp6389 (dp6390 g11 Nsg12 I201 sg13 I01 sg14 g3 (g15 g8 NtRp6391 (dp6392 g18 g3 (g19 g5 (ltRp6393 (dp6394 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6395 (dp6396 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6397 (dp6398 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6399 (dp6400 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p6401 sg22 I00 sg37 g38 sg39 g6401 sbag3 (g7 g8 NtRp6402 (dp6403 g11 Nsg12 I202 sg13 I01 sg14 g3 (g15 g8 NtRp6404 (dp6405 g18 g3 (g19 g5 (ltRp6406 (dp6407 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6408 (dp6409 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6410 (dp6411 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6412 (dp6413 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p6414 sg22 I00 sg37 g38 sg39 g6414 sbag3 (g7 g8 NtRp6415 (dp6416 g11 Nsg12 I203 sg13 I01 sg14 g3 (g15 g8 NtRp6417 (dp6418 g18 g3 (g19 g5 (ltRp6419 (dp6420 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6421 (dp6422 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6423 (dp6424 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6425 (dp6426 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p6427 sg22 I00 sg37 g38 sg39 g6427 sbag3 (g7 g8 NtRp6428 (dp6429 g11 Nsg12 I204 sg13 I01 sg14 g3 (g15 g8 NtRp6430 (dp6431 g18 g3 (g19 g5 (ltRp6432 (dp6433 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6434 (dp6435 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6436 (dp6437 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6438 (dp6439 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p6440 sg22 I00 sg37 g38 sg39 g6440 sbag3 (g7 g8 NtRp6441 (dp6442 g11 Nsg12 I205 sg13 I01 sg14 g3 (g15 g8 NtRp6443 (dp6444 g18 g3 (g19 g5 (ltRp6445 (dp6446 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6447 (dp6448 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6449 (dp6450 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6451 (dp6452 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p6453 sg22 I00 sg37 g38 sg39 g6453 sbag3 (g7 g8 NtRp6454 (dp6455 g11 Nsg12 I206 sg13 I01 sg14 g3 (g15 g8 NtRp6456 (dp6457 g18 g3 (g19 g5 (ltRp6458 (dp6459 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6460 (dp6461 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6462 (dp6463 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6464 (dp6465 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p6466 sg22 I00 sg37 g38 sg39 g6466 sbag3 (g7 g8 NtRp6467 (dp6468 g11 Nsg12 I207 sg13 I01 sg14 g3 (g15 g8 NtRp6469 (dp6470 g18 g3 (g19 g5 (ltRp6471 (dp6472 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6473 (dp6474 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6475 (dp6476 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6477 (dp6478 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p6479 sg22 I00 sg37 g38 sg39 g6479 sbag3 (g7 g8 NtRp6480 (dp6481 g11 Nsg12 I208 sg13 I01 sg14 g3 (g15 g8 NtRp6482 (dp6483 g18 g3 (g19 g5 (ltRp6484 (dp6485 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6486 (dp6487 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6488 (dp6489 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6490 (dp6491 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p6492 sg22 I00 sg37 g38 sg39 g6492 sbag3 (g7 g8 NtRp6493 (dp6494 g11 Nsg12 I209 sg13 I01 sg14 g3 (g15 g8 NtRp6495 (dp6496 g18 g3 (g19 g5 (ltRp6497 (dp6498 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6499 (dp6500 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6501 (dp6502 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6503 (dp6504 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p6505 sg22 I00 sg37 g38 sg39 g6505 sbag3 (g7 g8 NtRp6506 (dp6507 g11 Nsg12 I210 sg13 I01 sg14 g3 (g15 g8 NtRp6508 (dp6509 g18 g3 (g19 g5 (ltRp6510 (dp6511 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6512 (dp6513 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6514 (dp6515 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6516 (dp6517 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p6518 sg22 I00 sg37 g38 sg39 g6518 sbag3 (g7 g8 NtRp6519 (dp6520 g11 Nsg12 I211 sg13 I01 sg14 g3 (g15 g8 NtRp6521 (dp6522 g18 g3 (g19 g5 (ltRp6523 (dp6524 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6525 (dp6526 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6527 (dp6528 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6529 (dp6530 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p6531 sg22 I00 sg37 g38 sg39 g6531 sbag3 (g7 g8 NtRp6532 (dp6533 g11 Nsg12 I212 sg13 I01 sg14 g3 (g15 g8 NtRp6534 (dp6535 g18 g3 (g19 g5 (ltRp6536 (dp6537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6538 (dp6539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6540 (dp6541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6542 (dp6543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p6544 sg22 I00 sg37 g38 sg39 g6544 sbag3 (g7 g8 NtRp6545 (dp6546 g11 Nsg12 I213 sg13 I01 sg14 g3 (g15 g8 NtRp6547 (dp6548 g18 g3 (g19 g5 (ltRp6549 (dp6550 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6551 (dp6552 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6553 (dp6554 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6555 (dp6556 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p6557 sg22 I00 sg37 g38 sg39 g6557 sbag3 (g7 g8 NtRp6558 (dp6559 g11 Nsg12 I214 sg13 I01 sg14 g3 (g15 g8 NtRp6560 (dp6561 g18 g3 (g19 g5 (ltRp6562 (dp6563 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6564 (dp6565 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6566 (dp6567 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6568 (dp6569 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p6570 sg22 I00 sg37 g38 sg39 g6570 sbag3 (g7 g8 NtRp6571 (dp6572 g11 Nsg12 I215 sg13 I01 sg14 g3 (g15 g8 NtRp6573 (dp6574 g18 g3 (g19 g5 (ltRp6575 (dp6576 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6577 (dp6578 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6579 (dp6580 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6581 (dp6582 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p6583 sg22 I00 sg37 g38 sg39 g6583 sbag3 (g7 g8 NtRp6584 (dp6585 g11 Nsg12 I216 sg13 I01 sg14 g3 (g15 g8 NtRp6586 (dp6587 g18 g3 (g19 g5 (ltRp6588 (dp6589 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6590 (dp6591 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6592 (dp6593 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6594 (dp6595 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p6596 sg22 I00 sg37 g38 sg39 g6596 sbag3 (g7 g8 NtRp6597 (dp6598 g11 Nsg12 I217 sg13 I01 sg14 g3 (g15 g8 NtRp6599 (dp6600 g18 g3 (g19 g5 (ltRp6601 (dp6602 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6603 (dp6604 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6605 (dp6606 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6607 (dp6608 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p6609 sg22 I00 sg37 g38 sg39 g6609 sbag3 (g7 g8 NtRp6610 (dp6611 g11 Nsg12 I218 sg13 I01 sg14 g3 (g15 g8 NtRp6612 (dp6613 g18 g3 (g19 g5 (ltRp6614 (dp6615 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6616 (dp6617 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6618 (dp6619 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6620 (dp6621 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p6622 sg22 I00 sg37 g38 sg39 g6622 sbag3 (g7 g8 NtRp6623 (dp6624 g11 Nsg12 I219 sg13 I01 sg14 g3 (g15 g8 NtRp6625 (dp6626 g18 g3 (g19 g5 (ltRp6627 (dp6628 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6629 (dp6630 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6631 (dp6632 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6633 (dp6634 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p6635 sg22 I00 sg37 g38 sg39 g6635 sbag3 (g7 g8 NtRp6636 (dp6637 g11 Nsg12 I220 sg13 I01 sg14 g3 (g15 g8 NtRp6638 (dp6639 g18 g3 (g19 g5 (ltRp6640 (dp6641 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6642 (dp6643 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6644 (dp6645 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6646 (dp6647 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p6648 sg22 I00 sg37 g38 sg39 g6648 sbag3 (g7 g8 NtRp6649 (dp6650 g11 Nsg12 I221 sg13 I01 sg14 g3 (g15 g8 NtRp6651 (dp6652 g18 g3 (g19 g5 (ltRp6653 (dp6654 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6655 (dp6656 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6657 (dp6658 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6659 (dp6660 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p6661 sg22 I00 sg37 g38 sg39 g6661 sbag3 (g7 g8 NtRp6662 (dp6663 g11 Nsg12 I222 sg13 I01 sg14 g3 (g15 g8 NtRp6664 (dp6665 g18 g3 (g19 g5 (ltRp6666 (dp6667 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6668 (dp6669 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6670 (dp6671 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6672 (dp6673 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p6674 sg22 I00 sg37 g38 sg39 g6674 sbag3 (g7 g8 NtRp6675 (dp6676 g11 Nsg12 I223 sg13 I01 sg14 g3 (g15 g8 NtRp6677 (dp6678 g18 g3 (g19 g5 (ltRp6679 (dp6680 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6681 (dp6682 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6683 (dp6684 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6685 (dp6686 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p6687 sg22 I00 sg37 g38 sg39 g6687 sbag3 (g7 g8 NtRp6688 (dp6689 g11 Nsg12 I224 sg13 I01 sg14 g3 (g15 g8 NtRp6690 (dp6691 g18 g3 (g19 g5 (ltRp6692 (dp6693 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6694 (dp6695 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6696 (dp6697 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6698 (dp6699 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p6700 sg22 I00 sg37 g38 sg39 g6700 sbag3 (g7 g8 NtRp6701 (dp6702 g11 Nsg12 I225 sg13 I01 sg14 g3 (g15 g8 NtRp6703 (dp6704 g18 g3 (g19 g5 (ltRp6705 (dp6706 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6707 (dp6708 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6709 (dp6710 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6711 (dp6712 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p6713 sg22 I00 sg37 g38 sg39 g6713 sbag3 (g7 g8 NtRp6714 (dp6715 g11 Nsg12 I226 sg13 I01 sg14 g3 (g15 g8 NtRp6716 (dp6717 g18 g3 (g19 g5 (ltRp6718 (dp6719 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6720 (dp6721 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6722 (dp6723 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6724 (dp6725 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p6726 sg22 I00 sg37 g38 sg39 g6726 sbag3 (g7 g8 NtRp6727 (dp6728 g11 Nsg12 I227 sg13 I01 sg14 g3 (g15 g8 NtRp6729 (dp6730 g18 g3 (g19 g5 (ltRp6731 (dp6732 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6733 (dp6734 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6735 (dp6736 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6737 (dp6738 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p6739 sg22 I00 sg37 g38 sg39 g6739 sbag3 (g7 g8 NtRp6740 (dp6741 g11 Nsg12 I228 sg13 I01 sg14 g3 (g15 g8 NtRp6742 (dp6743 g18 g3 (g19 g5 (ltRp6744 (dp6745 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6746 (dp6747 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6748 (dp6749 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6750 (dp6751 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p6752 sg22 I00 sg37 g38 sg39 g6752 sbag3 (g7 g8 NtRp6753 (dp6754 g11 Nsg12 I229 sg13 I01 sg14 g3 (g15 g8 NtRp6755 (dp6756 g18 g3 (g19 g5 (ltRp6757 (dp6758 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6759 (dp6760 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6761 (dp6762 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6763 (dp6764 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p6765 sg22 I00 sg37 g38 sg39 g6765 sbag3 (g7 g8 NtRp6766 (dp6767 g11 Nsg12 I230 sg13 I01 sg14 g3 (g15 g8 NtRp6768 (dp6769 g18 g3 (g19 g5 (ltRp6770 (dp6771 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6772 (dp6773 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6774 (dp6775 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6776 (dp6777 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p6778 sg22 I00 sg37 g38 sg39 g6778 sbag3 (g7 g8 NtRp6779 (dp6780 g11 Nsg12 I231 sg13 I01 sg14 g3 (g15 g8 NtRp6781 (dp6782 g18 g3 (g19 g5 (ltRp6783 (dp6784 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6785 (dp6786 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6787 (dp6788 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6789 (dp6790 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p6791 sg22 I00 sg37 g38 sg39 g6791 sbag3 (g7 g8 NtRp6792 (dp6793 g11 Nsg12 I232 sg13 I01 sg14 g3 (g15 g8 NtRp6794 (dp6795 g18 g3 (g19 g5 (ltRp6796 (dp6797 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6798 (dp6799 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6800 (dp6801 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6802 (dp6803 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p6804 sg22 I00 sg37 g38 sg39 g6804 sbag3 (g7 g8 NtRp6805 (dp6806 g11 Nsg12 I233 sg13 I01 sg14 g3 (g15 g8 NtRp6807 (dp6808 g18 g3 (g19 g5 (ltRp6809 (dp6810 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6811 (dp6812 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6813 (dp6814 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6815 (dp6816 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p6817 sg22 I00 sg37 g38 sg39 g6817 sbag3 (g7 g8 NtRp6818 (dp6819 g11 Nsg12 I234 sg13 I01 sg14 g3 (g15 g8 NtRp6820 (dp6821 g18 g3 (g19 g5 (ltRp6822 (dp6823 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6824 (dp6825 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6826 (dp6827 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6828 (dp6829 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p6830 sg22 I00 sg37 g38 sg39 g6830 sbag3 (g7 g8 NtRp6831 (dp6832 g11 Nsg12 I235 sg13 I01 sg14 g3 (g15 g8 NtRp6833 (dp6834 g18 g3 (g19 g5 (ltRp6835 (dp6836 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6837 (dp6838 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6839 (dp6840 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6841 (dp6842 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p6843 sg22 I00 sg37 g38 sg39 g6843 sbag3 (g7 g8 NtRp6844 (dp6845 g11 Nsg12 I236 sg13 I01 sg14 g3 (g15 g8 NtRp6846 (dp6847 g18 g3 (g19 g5 (ltRp6848 (dp6849 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6850 (dp6851 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6852 (dp6853 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6854 (dp6855 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p6856 sg22 I00 sg37 g38 sg39 g6856 sbag3 (g7 g8 NtRp6857 (dp6858 g11 Nsg12 I237 sg13 I01 sg14 g3 (g15 g8 NtRp6859 (dp6860 g18 g3 (g19 g5 (ltRp6861 (dp6862 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6863 (dp6864 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6865 (dp6866 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6867 (dp6868 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p6869 sg22 I00 sg37 g38 sg39 g6869 sbag3 (g7 g8 NtRp6870 (dp6871 g11 Nsg12 I238 sg13 I01 sg14 g3 (g15 g8 NtRp6872 (dp6873 g18 g3 (g19 g5 (ltRp6874 (dp6875 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6876 (dp6877 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6878 (dp6879 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6880 (dp6881 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p6882 sg22 I00 sg37 g38 sg39 g6882 sbag3 (g7 g8 NtRp6883 (dp6884 g11 Nsg12 I239 sg13 I01 sg14 g3 (g15 g8 NtRp6885 (dp6886 g18 g3 (g19 g5 (ltRp6887 (dp6888 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6889 (dp6890 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6891 (dp6892 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6893 (dp6894 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p6895 sg22 I00 sg37 g38 sg39 g6895 sbag3 (g7 g8 NtRp6896 (dp6897 g11 Nsg12 I240 sg13 I01 sg14 g3 (g15 g8 NtRp6898 (dp6899 g18 g3 (g19 g5 (ltRp6900 (dp6901 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6902 (dp6903 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6904 (dp6905 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6906 (dp6907 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p6908 sg22 I00 sg37 g38 sg39 g6908 sbag3 (g7 g8 NtRp6909 (dp6910 g11 Nsg12 I241 sg13 I01 sg14 g3 (g15 g8 NtRp6911 (dp6912 g18 g3 (g19 g5 (ltRp6913 (dp6914 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6915 (dp6916 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6917 (dp6918 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6919 (dp6920 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p6921 sg22 I00 sg37 g38 sg39 g6921 sbag3 (g7 g8 NtRp6922 (dp6923 g11 Nsg12 I242 sg13 I01 sg14 g3 (g15 g8 NtRp6924 (dp6925 g18 g3 (g19 g5 (ltRp6926 (dp6927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6928 (dp6929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6930 (dp6931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6932 (dp6933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p6934 sg22 I00 sg37 g38 sg39 g6934 sbag3 (g7 g8 NtRp6935 (dp6936 g11 Nsg12 I243 sg13 I01 sg14 g3 (g15 g8 NtRp6937 (dp6938 g18 g3 (g19 g5 (ltRp6939 (dp6940 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6941 (dp6942 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6943 (dp6944 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6945 (dp6946 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p6947 sg22 I00 sg37 g38 sg39 g6947 sbag3 (g7 g8 NtRp6948 (dp6949 g11 Nsg12 I244 sg13 I01 sg14 g3 (g15 g8 NtRp6950 (dp6951 g18 g3 (g19 g5 (ltRp6952 (dp6953 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6954 (dp6955 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6956 (dp6957 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6958 (dp6959 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p6960 sg22 I00 sg37 g38 sg39 g6960 sbatRp6961 (dp6962 g12 I244 sg22 I00 sg11 Nsbs.</svRestConfiguration> + </statManagerOptions> + <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> + <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory"> + <singletonDict type="dict"/> + <referenceCountDict type="dict"> + <item> + <key type="str">qovCoprocessor</key> + <value type="int">0</value> + </item> + <item> + <key type="str">Impairment</key> + <value type="int">0</value> + </item> + <item> + <key type="str">asrCoprocessor</key> + <value type="int">0</value> + </item> + </referenceCountDict> + </_scenarioElementFactory> + </item> + </testList> +</root> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-1B.rxf b/samples/vnf_samples/traffic_profiles/ixload/HTTP-SimulatedUsers_2Ports.rxf index cc0847398..72bb21cd6 100644 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-1B.rxf +++ b/samples/vnf_samples/traffic_profiles/ixload/HTTP-SimulatedUsers_2Ports.rxf @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <root ver="[21, [1, [0, [0]]]]" type="ixRepository"> <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> + <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="628fdbe1-4254-48b1-8765-a4d5bbafd1ff" version="6.70.442"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442"> <name type="String">uplink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:0A:00:02:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">10.0.2.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">10.0.2.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.442"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.442"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.442"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442"> <name type="String">downlink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:0A:00:03:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">10.0.3.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">10.0.3.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.442"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.442"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.442"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3b7f72db-e223-46ac-b71d-75e47f78e682" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.80.2"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.80.2"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.80.2"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.80.2"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <payloadAttrTypes type="ListNode" /> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.442"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> </_smSessionXml> <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> <xml type="str"></xml> @@ -10,11 +10,11 @@ <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> </_quickTestConfig> <lastApiUniqueId type="int">15481</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_2Ports-CC-1B.rxf</name> + <version type="str">8.30.115.152</version> + <name type="str">HTTP-SimulatedUsers_2Ports.rxf</name> <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_2Ports-CC-1B.rxf</last> + <path type="str">C:\ixload</path> + <last type="str">HTTP-SimulatedUsers_2Ports.rxf</last> <activeTest type="str">Test1</activeTest> <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> @@ -54,8 +54,8 @@ <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> <name type="str">Client</name> <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> + <item ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> + <name type="str">HTTP client@uplink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -98,8 +98,8 @@ <inUse type="bool">True</inUse> <customPortMap type="NoneType">None</customPortMap> <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> + <destinationCommunity ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> + <name type="str">HTTP server@downlink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -484,7 +484,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> + <name type="str">downlink_0</name> <role type="str">Server</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -498,7 +498,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> + <name type="str">Network Range IP-R2 in downlink_0 (10.0.3.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -668,9 +668,9 @@ <iterations type="int">1</iterations> <standbyTime type="int">0</standbyTime> <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> + <sustainTime type="int">83</sustainTime> + <iterationTime type="int">83</iterationTime> + <totalTime type="int">83</totalTime> <objectID type="int">1</objectID> <_apiUniqueId type="int">12955</_apiUniqueId> <isVisible type="bool">True</isVisible> @@ -743,6 +743,7 @@ <browserEmulationName type="str">Custom1</browserEmulationName> <enableSsl type="int">0</enableSsl> <sslVersion type="int">3</sslVersion> + <disableMacValidation type="int">0</disableMacValidation> <sslReuseMethod type="int">0</sslReuseMethod> <sequentialSessionReuse type="int">0</sequentialSessionReuse> <enablesslRecordSize type="int">0</enablesslRecordSize> @@ -862,12 +863,16 @@ <ipPreference type="int">2</ipPreference> <tcpCloseOption type="int">0</tcpCloseOption> <piggybackAck type="int">1</piggybackAck> + <tcpFastOpen type="int">0</tcpFastOpen> <enableLargeHeader type="int">0</enableLargeHeader> <maxHeaderLen type="int">1024</maxHeaderLen> <useAllIPs type="int">0</useAllIPs> <enableDecompressSupport type="int">0</enableDecompressSupport> <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> + <enableAuth type="int">0</enableAuth> + <authProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthProfileList" itemtype="ixAuthProfile"/> + <ipMappingList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthIpMapList" itemtype="ixAuthIpMap"/> <uniqueID type="int">1</uniqueID> <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> @@ -889,7 +894,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> + <name type="str">uplink_0</name> <role type="str">Client</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -903,7 +908,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> + <name type="str">Network Range IP-R1 in uplink_0 (10.0.2.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -1012,16 +1017,16 @@ <enable type="bool">True</enable> <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> <name type="str">Timeline1</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> + <iterationTime type="int">83</iterationTime> + <totalTime type="int">83</totalTime> <iterations type="int">1</iterations> <standbyTime type="int">0</standbyTime> <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> + <sustainTime type="int">60</sustainTime> <rampUpType type="int">0</rampUpType> <rampUpValue type="int">30000</rampUpValue> <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> + <rampUpTime type="int">3</rampUpTime> <rampDownTime type="int">20</rampDownTime> <rampDownValue type="int">32000</rampDownValue> <timelineType type="int">0</timelineType> @@ -1031,15 +1036,15 @@ <role type="str">Client</role> <activeRole type="str">Client</activeRole> <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> + <objectiveType type="str">simulatedUsers</objectiveType> + <objectiveValue type="int">64000</objectiveValue> + <userObjectiveType type="str">simulatedUsers</userObjectiveType> + <userObjectiveValue type="long">64000</userObjectiveValue> + <constraintType type="str">ConnectionRateConstraint</constraintType> <constraintValue type="int">100</constraintValue> <timerGranularity type="int">100</timerGranularity> <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> + <secondaryConstraintType type="str">SimulatedUserConstraint</secondaryConstraintType> <secondaryConstraintValue type="int">100</secondaryConstraintValue> <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> <portMapPolicy type="str">portMesh</portMapPolicy> @@ -1050,7 +1055,7 @@ <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> <objectID type="int">0</objectID> <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> + <_objectiveValue type="int">64000</_objectiveValue> <timelineScale type="float">1.0</timelineScale> </item> </activityParameters> @@ -1106,20 +1111,20 @@ <iterations type="int">1</iterations> <standbyTime type="int">0</standbyTime> <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> + <sustainTime type="int">60</sustainTime> + <iterationTime type="int">83</iterationTime> + <totalTime type="int">83</totalTime> <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> + <objectiveType type="str">simulatedUsers</objectiveType> + <objectiveValue type="int">64000</objectiveValue> + <rampUpType type="int">0</rampUpType> <rampUpValue type="int">30000</rampUpValue> <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> + <rampUpTime type="int">3</rampUpTime> <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> + <userObjectiveType type="str">simulatedUsers</userObjectiveType> + <userObjectiveValue type="long">64000</userObjectiveValue> + <totalUserObjectiveValue type="long">64000</totalUserObjectiveValue> <objectID type="int">0</objectID> <_apiUniqueId type="int">12925</_apiUniqueId> <isVisible type="bool">True</isVisible> @@ -1258,7 +1263,7 @@ <pollingInterval type="int">2</pollingInterval> <allowCsvLogging type="bool">False</allowCsvLogging> <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6&EOXC@8_BL1*U6[TN9P(-!2VA'EF$9# 1'FD+:KRB2&>B<DC.UPS&K_ M^]K.00@)K78_M''\/.]AY[']FLZ'_=I7MHA0' 9W-: 9M0_W'8=!]@6C'2)' MJ*DU#<W0S%:SQ@F(BMX1IDSYA YW-;AA>(^A1K?:1EA0A@(7:3G>5P(W'.+& MO<EX/AC/%?V^,YT-'-[LSNW)N/C^,NC;\^[#:"" WN3IP1X/^EEHFK7>D\!9 M\/O.D* ?$><<E"WT(W17,VLR$-V.PM4*!ZNT?PA]BB0VQVOD' +W ;W"+0Y) MRC RE#*XWDP)<K',+,'K$A^L"$]&3.O\L$$I!B0VX=/LA]";DI AE^5LYR1" MA<0>L>>A0#BBYSD. KCP41\RZ+"0H'/"]#@[^3P:9=87(_&$)A';1"R;R:?( M9WCC%\<F27WG#=H3W O949Y?+Z(L7'_DW^PUXS33F$/LHRED&2+[NSXBC*9/ MA6LZH.T]Q7>U5\8V;5W?[7;:KJZ%9*6;A@'T;T\CQWU%:ZCB@'\T/AFUS,I[ MVTH&U=.H?;2$?$QRGD[?).T4[I$P40%!B*.%]QGT</B1A-&F ." W9L=73PZ M>B6KYV,4L&%(UI$/'<08UTOV[?Z^^F7?O^7_NK=7/Z*0W7Z)%W?\THX?0+/B MQN]G;#& A/O'$?SSV/SGV(R7!%\0LR@HYG'EL]N3?2>-;,0-A:LD]+A% D1L MJ8)FW/YPM6*WN<RXJR2*'2Q#!Q$,??P3BB7T %<Y)<3F[Y9#DLE1$^^SCUFG M.2J*R'+]PI+9X"K'+E_I&UKDQ4PQGC%<(X&*-A"=>KZWW*8'&5J%Y" 88@GK MC_/Y-+/-H^?VO>4J75B",&P_V]_LKCH?.'/G6?A1M\.O+_9TVW@QIR%7O=KK MJ>!!(_NEC%"P+T\0D70 'CT.ZMA[;M6/Y)@5O1)^W"4BOL!QWN*(-":+O\3. MNT7T$NL1KUY]_L<J6=G^RFR^=S*\Q(@(INNYUF+A>JJ%W(7: #<+=6$"I()6 MRS"0Z0&S;LDYJ7)P'HJ+*:\3_@J U91.<M"YW6>*B&/W!>BH0+54$Z@MTZHW M+*M15YN&"9H\F6O5,EMFO64V#+5N-&]NFBWI.F==FA+7-V'(FP2"81J@I0*@ M&JTYJ+>M1AM86M,TK&M@JL9UVS#2;$^L*OR&_ SG#(4OYW: _61),GY")JNU MXI/$F^(3=%]Q@-)IZ8^=CZH0>:S?,LH;GKJ>)TYTP03-&\VT&II9-S1@WAP- MVVUPNEGI52[.@]G[,6*[D'Q/MVG.NM;,N JK2V=EE N.9LA'D,JQV?L1KS>4 M:PT8RJ![ZBQ'N^ L7>N]]C/?S%8$KA6Q!5#EU_UU\[=GFU=CSW&49Y&U6HQ2 MO5?8^QG:\$T&D=RPZEI+C!RT$B\EE/(E^_G)<:$O1P.,1'"%_G-#9YN#/RWX M5BW,3GI+12HKDS,92N/W' "Y@P)17C/0R4:<9!4"Z86^S_<L4<9)12,&^0?P M8IF=8I7&(P1)@#QQ> K>4I1W>0<%O-+/T ]WLB"AI6Y.X4HO?.\33%D("J)< MVSDW1?R2HZ3TO^2K2*EVQ^ORT U].^"*6T(7E7LL954ZG8410S,8K,J]%> R M-^N-V#WFF5R*4U^&5^GRHMYB77J'0*B6W[=*3K\3RA=1Z)V1LJ574:T)=EQ9 M9[>T_W!!S IO<4$)_(-\!Z)CA(/OR#L6YD<;/5'"L45+<7&1O>]((2L!/R7N M:M);+7>#KIWB\5VFIH3$0T3>=:#+A4%':(O\]-*I2PM^HPW6F\O764Y(Z@-Y M9\G=9P74"X,E7D4$YF^08M8I!UT.RN^1O&\AB7.,#T]AGQRC4-9!Y\>KAZA+ ML%1( N;*7>Z5'VD^/\_2,DM\[210/JZ'MF\8Y!AZ/O/_JPUI+L8I'ME/'/?_ % D1BE1\ end </svConfiguration> + <svConfiguration type="str">begin 666 <data> M>)RE6&MSXC84_2L>.LVTT_HAFU<(R4X"9,,L"0QFT\XTG1UA"Z)=8WMEF4<[ M_>^]DHTQQB:9]L,NLLZY5U?2T=55NA^V*T]9$Q;1P+^N(<VH?;CIVASS9THV MA!V@IM8T-$.SC&8-""02O2,:<>43V5W7<,CIEF(M6FNAL(@X\1VBY7B_,1P" M!,:]\=-L\#13])ON9#JPH7D[&XZ?BM]?!OWA[/9N-!! ;_QX-WP:]+.AHZSU MG@!.!K_IWC/R/0;.3EEC+R;7-;,F!XK6HV"YI/YRWW^/O8A(;$97Q-[YSAUY MQ6L:L#W#R-"(XU4X8<2A,K(4MR0^6#((1BSK;!>2/88D-H9E]@+L3EC B<-S MMC,6DT)@#]1UB2\<1:<Q#GP\]T@?<VSS@)%3PN2P.ODXZF769T>"@,8Q#V.> MK>1C['$:>L6Y25+??H/VB+="=A'$UXLC'JP^PIZ]9ISF?LQ[ZI$)YADB^V\] MPGBT_U5 TW[4V4;TNO;*>=C1]<UFHVTL+6!+W30,I/_^.+*=5[+"*O5ATV Q M:IF5^[:5'%3?C]HG"PQSDNMT_"5IQW"/!:D*&"& %KZGV*7!1Q;$80&@/K\Q MN[KXZ>J5K)Y'B<_O [:*/6P3SD$OV=[]??'#MG\%_]U>77R/ W[UG!SNY*.3 M_""MD31^/6&+":3</P[@GX?F/X=F<B3@0$QCOQC'A<>OCO+.?F0C:2B@DL % MBQ2(^4)%S:3]X6+)KW*1@:MTE*&_"&S"*/;H7U@<H3N\S"DA,7^W'-)(#IIX MGWW".HY14424JR\\70U0.77@I(=1D9<PQ7R>\(H(5+21Z-3SO>4V/<S),F [ MP1!'6'^8S2:9;1X]M>\MEON#)0B]S@O=BH3T(GRH-A5RXL3]',&.?3$G >A> M8]N%]%ZP+0^.L'WP;G28T*'WU*H?R_DJ>B7\L$D%?(9CO\4188SG7T7679/H M'.N!+E\]^,<K65ENY4/(FYPN*&&"Z;A.8SYW7+5!G+E:1Y=S=6XBHJ)6RS"( MZ2+3:L@UJ7)P.A0(*:\1^$2HT91.<M"IG=A!>]@7H*TBM:&:2#6-AHD0L@Q3 M168+VH;10G#BZO7Z);JT6FK;:C3;=>D\9U\:%*B;@5#&OF"8!FJK" 9HS9#9 M:1B=1ETS+BUPAWXQC(YA[.,]LJKP&\ -#@P%#G/'IUYZ(#G<C^E9K=B4)"4^ M8N>5^F2_,/9P]#P9/0_M:=\V$CV6\MYP=^NZXE(73&1HIM728"$U9%D'NP5I M&YV.5<?U3K-M&1T\=QL=TVK_B,SC-*97>3Z-8;A](GP3L&_[! ZL-I1F&FA M0PU3NBLCG7$U)1[!D9ST<#N"HZ^T-60H@]MC9SG:&6>Y/ *);LGP2A$I(E)^ MVK:;/[\,H5)[249Y$7&K@UOU<^A"ABF$7IU3AMLI"2$-$9:;GJ6U1(W::*=> M2BCE1_OSH^U@CR3[F,JRT']J:*]S\*<YI'-A=M1;*F59O9R(51J_YY+(728D M@KHB&H?BMJN02B_P/,AMHM23]P+A&#;"301WC%4:CPAF/G'%!2MX"U$"YAT4 M\$H_]UZPD45+5.KF&*[T CE2,&6Q*(@R ^3<%/%SCM+GP3E?14JU.ZC= R?P MACXH;H$=4NZQE%7I=!K$G$RQORSW5H#+W*Q"D4=FF5R*2U^&5^GRK-X27;H[ M7Z@6WF0EM^01Y5D4@R>D[.A55'2"G53?V4ON/SPBL^)</&)\;R>_D>@84?\; M<0_%^\%&3Y5P:$6EN'CLWG2ED!4?KI'KFO16R[VR:\=X\MZI*0%S"9/O(>R M,*(161-O_S#5I06\>OU5>/[)"X2TCI#OFMR;5T"]P%_09<QP_I4I5CT"T %0 M[D?ZO<8LB3&Y8H5]>MEB62^=7L(NB1Q&I4)2,%<2@U>XW#RXV?;EF-CM=*#\ <N"Y9OV&08^CYR/^O-J2YF*?XR?X,<O,O!I2A( end </svConfiguration> <svRestConfiguration type="str">(dp1 S'HTTP Server Per URL' p2 ccopy_reg _reconstructor p3 (cLib.Rest.ixPersistentStatSource ixConfiguredStatsList p4 c__builtin__ list p5 (lp6 g3 (cLib.Rest.ixPersistentStatSource ixConfiguredStat p7 c__builtin__ object p8 NtRp9 (dp10 S'proxyPropertyList' p11 NsS'_objectID' p12 I0 sS'enabled' p13 I01 sS'filterList' p14 g3 (cLib.Rest.ixPersistentStatSource ixRestFilters p15 g8 NtRp16 (dp17 S'cardFilters' p18 g3 (cLib.Rest.ixPersistentStatSource ixCardFilterList p19 g5 (ltRp20 (dp21 g12 I-1 sS'_resourceLocked' p22 I00 sg11 NsbsS'activityFilters' p23 g3 (cLib.Rest.ixPersistentStatSource ixActivityFilterList p24 g5 (ltRp25 (dp26 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sS'chassisFilters' p27 g3 (cLib.Rest.ixPersistentStatSource ixChassisFilterList p28 g5 (ltRp29 (dp30 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sS'portFilters' p31 g3 (cLib.Rest.ixPersistentStatSource ixPortFilterList p32 g5 (ltRp33 (dp34 g12 I-1 sg22 I00 sg11 NsbsbsS'caption' p35 S'HTTP Requests Received' p36 sg22 I00 sS'aggregationType' p37 S'kSum' p38 sS'statName' p39 g36 sbag3 (g7 g8 NtRp40 (dp41 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp42 (dp43 g18 g3 (g19 g5 (ltRp44 (dp45 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp46 (dp47 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp48 (dp49 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp50 (dp51 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp53 (dp54 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp55 (dp56 g18 g3 (g19 g5 (ltRp57 (dp58 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp59 (dp60 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp61 (dp62 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp63 (dp64 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp66 (dp67 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp68 (dp69 g18 g3 (g19 g5 (ltRp70 (dp71 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp72 (dp73 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp74 (dp75 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp76 (dp77 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (50x)' p78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp79 (dp80 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp81 (dp82 g18 g3 (g19 g5 (ltRp83 (dp84 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp85 (dp86 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp87 (dp88 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp89 (dp90 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write Error)' p91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp92 (dp93 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp94 (dp95 g18 g3 (g19 g5 (ltRp96 (dp97 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp98 (dp99 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp100 (dp101 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp102 (dp103 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent' p104 sg22 I00 sg37 g38 sg39 g104 sbag3 (g7 g8 NtRp105 (dp106 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp107 (dp108 g18 g3 (g19 g5 (ltRp109 (dp110 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp111 (dp112 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp113 (dp114 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp115 (dp116 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (1xx)' p117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp118 (dp119 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp120 (dp121 g18 g3 (g19 g5 (ltRp122 (dp123 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp124 (dp125 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp126 (dp127 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp128 (dp129 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (2xx)' p130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp131 (dp132 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp133 (dp134 g18 g3 (g19 g5 (ltRp135 (dp136 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp137 (dp138 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp139 (dp140 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp141 (dp142 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (3xx)' p143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp144 (dp145 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp146 (dp147 g18 g3 (g19 g5 (ltRp148 (dp149 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp150 (dp151 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp152 (dp153 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp154 (dp155 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (4xx)' p156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp157 (dp158 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp159 (dp160 g18 g3 (g19 g5 (ltRp161 (dp162 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp163 (dp164 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp165 (dp166 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp167 (dp168 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (5xx)' p169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp170 (dp171 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp172 (dp173 g18 g3 (g19 g5 (ltRp174 (dp175 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp176 (dp177 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp178 (dp179 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp180 (dp181 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (Other)' p182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp183 (dp184 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp185 (dp186 g18 g3 (g19 g5 (ltRp187 (dp188 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp189 (dp190 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp191 (dp192 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp193 (dp194 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Write Error)' p195 sg22 I00 sg37 g38 sg39 g195 sbag3 (g7 g8 NtRp196 (dp197 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp198 (dp199 g18 g3 (g19 g5 (ltRp200 (dp201 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp202 (dp203 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp204 (dp205 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp206 (dp207 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Aborted)' p208 sg22 I00 sg37 g38 sg39 g208 sbag3 (g7 g8 NtRp209 (dp210 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp211 (dp212 g18 g3 (g19 g5 (ltRp213 (dp214 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp215 (dp216 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp217 (dp218 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp219 (dp220 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Other)' p221 sg22 I00 sg37 g38 sg39 g221 sbag3 (g7 g8 NtRp222 (dp223 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp224 (dp225 g18 g3 (g19 g5 (ltRp226 (dp227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp228 (dp229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp230 (dp231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp232 (dp233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Sent' p234 sg22 I00 sg37 g38 sg39 g234 sbag3 (g7 g8 NtRp235 (dp236 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp237 (dp238 g18 g3 (g19 g5 (ltRp239 (dp240 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp241 (dp242 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp243 (dp244 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp245 (dp246 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp248 (dp249 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp250 (dp251 g18 g3 (g19 g5 (ltRp252 (dp253 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp254 (dp255 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp256 (dp257 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp258 (dp259 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p260 sg22 I00 sg37 S'kWeightedAverage' p261 sg39 g260 sbag3 (g7 g8 NtRp262 (dp263 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp264 (dp265 g18 g3 (g19 g5 (ltRp266 (dp267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp268 (dp269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp270 (dp271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp272 (dp273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p274 sg22 I00 sg37 g261 sg39 g274 sbag3 (g7 g8 NtRp275 (dp276 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp277 (dp278 g18 g3 (g19 g5 (ltRp279 (dp280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp281 (dp282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp283 (dp284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp285 (dp286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Received' p287 sg22 I00 sg37 g38 sg39 g287 sbag3 (g7 g8 NtRp288 (dp289 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp290 (dp291 g18 g3 (g19 g5 (ltRp292 (dp293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp294 (dp295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp296 (dp297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp298 (dp299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp301 (dp302 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp303 (dp304 g18 g3 (g19 g5 (ltRp305 (dp306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp307 (dp308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp309 (dp310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp311 (dp312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Received Chunk Size' p313 sg22 I00 sg37 g261 sg39 g313 sbag3 (g7 g8 NtRp314 (dp315 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp316 (dp317 g18 g3 (g19 g5 (ltRp318 (dp319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp320 (dp321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp322 (dp323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp324 (dp325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p326 sg22 I00 sg37 g261 sg39 g326 sbag3 (g7 g8 NtRp327 (dp328 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp329 (dp330 g18 g3 (g19 g5 (ltRp331 (dp332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp333 (dp334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp335 (dp336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp337 (dp338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Received' p339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp340 (dp341 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp342 (dp343 g18 g3 (g19 g5 (ltRp344 (dp345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp346 (dp347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp348 (dp349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp350 (dp351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Successful' p352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp353 (dp354 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp355 (dp356 g18 g3 (g19 g5 (ltRp357 (dp358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp359 (dp360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp361 (dp362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp363 (dp364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Failed' p365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp366 (dp367 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp368 (dp369 g18 g3 (g19 g5 (ltRp370 (dp371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp372 (dp373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp374 (dp375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp376 (dp377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Request Received' p378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp379 (dp380 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp381 (dp382 g18 g3 (g19 g5 (ltRp383 (dp384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp385 (dp386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp387 (dp388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp389 (dp390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Response Sent' p391 sg22 I00 sg37 g38 sg39 g391 sbatRp392 (dp393 g12 I27 sg22 I00 sg11 NsbsS'HTTP Server' p394 g3 (g4 g5 (lp395 g3 (g7 g8 NtRp396 (dp397 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp398 (dp399 g18 g3 (g19 g5 (ltRp400 (dp401 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp402 (dp403 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp404 (dp405 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp406 (dp407 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g36 sg22 I00 sg37 g38 sg39 g36 sbag3 (g7 g8 NtRp408 (dp409 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp410 (dp411 g18 g3 (g19 g5 (ltRp412 (dp413 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp414 (dp415 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp416 (dp417 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp418 (dp419 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp420 (dp421 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp422 (dp423 g18 g3 (g19 g5 (ltRp424 (dp425 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp426 (dp427 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp428 (dp429 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp430 (dp431 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p432 sg22 I00 sg37 g38 sg39 g432 sbag3 (g7 g8 NtRp433 (dp434 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp435 (dp436 g18 g3 (g19 g5 (ltRp437 (dp438 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp439 (dp440 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp441 (dp442 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp443 (dp444 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp445 (dp446 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp447 (dp448 g18 g3 (g19 g5 (ltRp449 (dp450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp451 (dp452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp453 (dp454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp455 (dp456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp457 (dp458 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp459 (dp460 g18 g3 (g19 g5 (ltRp461 (dp462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp463 (dp464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp465 (dp466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp467 (dp468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp469 (dp470 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp471 (dp472 g18 g3 (g19 g5 (ltRp473 (dp474 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp475 (dp476 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp477 (dp478 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp479 (dp480 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p481 sg22 I00 sg37 g38 sg39 g481 sbag3 (g7 g8 NtRp482 (dp483 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp484 (dp485 g18 g3 (g19 g5 (ltRp486 (dp487 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp488 (dp489 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp490 (dp491 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp492 (dp493 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p494 sg22 I00 sg37 g38 sg39 g494 sbag3 (g7 g8 NtRp495 (dp496 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp497 (dp498 g18 g3 (g19 g5 (ltRp499 (dp500 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp501 (dp502 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp503 (dp504 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp505 (dp506 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p507 sg22 I00 sg37 g38 sg39 g507 sbag3 (g7 g8 NtRp508 (dp509 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp510 (dp511 g18 g3 (g19 g5 (ltRp512 (dp513 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp514 (dp515 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp516 (dp517 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp518 (dp519 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp520 (dp521 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp522 (dp523 g18 g3 (g19 g5 (ltRp524 (dp525 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp526 (dp527 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp528 (dp529 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp530 (dp531 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp532 (dp533 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp534 (dp535 g18 g3 (g19 g5 (ltRp536 (dp537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp538 (dp539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp540 (dp541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp542 (dp543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp544 (dp545 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp546 (dp547 g18 g3 (g19 g5 (ltRp548 (dp549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp550 (dp551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp552 (dp553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp554 (dp555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp556 (dp557 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp558 (dp559 g18 g3 (g19 g5 (ltRp560 (dp561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp562 (dp563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp564 (dp565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp566 (dp567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp568 (dp569 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp570 (dp571 g18 g3 (g19 g5 (ltRp572 (dp573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp574 (dp575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp576 (dp577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp578 (dp579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp580 (dp581 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp582 (dp583 g18 g3 (g19 g5 (ltRp584 (dp585 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp586 (dp587 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp588 (dp589 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp590 (dp591 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p592 sg22 I00 sg37 g38 sg39 g592 sbag3 (g7 g8 NtRp593 (dp594 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp595 (dp596 g18 g3 (g19 g5 (ltRp597 (dp598 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp599 (dp600 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp601 (dp602 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp603 (dp604 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p605 sg22 I00 sg37 g38 sg39 g605 sbag3 (g7 g8 NtRp606 (dp607 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp608 (dp609 g18 g3 (g19 g5 (ltRp610 (dp611 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp612 (dp613 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp614 (dp615 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp616 (dp617 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p618 sg22 I00 sg37 g38 sg39 g618 sbag3 (g7 g8 NtRp619 (dp620 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp621 (dp622 g18 g3 (g19 g5 (ltRp623 (dp624 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp625 (dp626 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp627 (dp628 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp629 (dp630 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p631 sg22 I00 sg37 g38 sg39 g631 sbag3 (g7 g8 NtRp632 (dp633 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp634 (dp635 g18 g3 (g19 g5 (ltRp636 (dp637 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp638 (dp639 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp640 (dp641 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp642 (dp643 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p644 sg22 I00 sg37 g38 sg39 g644 sbag3 (g7 g8 NtRp645 (dp646 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp647 (dp648 g18 g3 (g19 g5 (ltRp649 (dp650 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp651 (dp652 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp653 (dp654 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp655 (dp656 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p657 sg22 I00 sg37 g38 sg39 g657 sbag3 (g7 g8 NtRp658 (dp659 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp660 (dp661 g18 g3 (g19 g5 (ltRp662 (dp663 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp664 (dp665 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp666 (dp667 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp668 (dp669 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Matching ServerID' p670 sg22 I00 sg37 g38 sg39 g670 sbag3 (g7 g8 NtRp671 (dp672 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp673 (dp674 g18 g3 (g19 g5 (ltRp675 (dp676 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp677 (dp678 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp679 (dp680 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp681 (dp682 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Non-matching ServerID' p683 sg22 I00 sg37 g38 sg39 g683 sbag3 (g7 g8 NtRp684 (dp685 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp686 (dp687 g18 g3 (g19 g5 (ltRp688 (dp689 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp690 (dp691 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp692 (dp693 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp694 (dp695 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Encoded Responses Sent' p696 sg22 I00 sg37 g38 sg39 g696 sbag3 (g7 g8 NtRp697 (dp698 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp699 (dp700 g18 g3 (g19 g5 (ltRp701 (dp702 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp703 (dp704 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp705 (dp706 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp707 (dp708 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp709 (dp710 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp711 (dp712 g18 g3 (g19 g5 (ltRp713 (dp714 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp715 (dp716 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp717 (dp718 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp719 (dp720 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Transfer-Encoded Requests Received' p721 sg22 I00 sg37 g38 sg39 g721 sbag3 (g7 g8 NtRp722 (dp723 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp724 (dp725 g18 g3 (g19 g5 (ltRp726 (dp727 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp728 (dp729 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp730 (dp731 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp732 (dp733 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp734 (dp735 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp736 (dp737 g18 g3 (g19 g5 (ltRp738 (dp739 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp740 (dp741 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp742 (dp743 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp744 (dp745 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp746 (dp747 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp748 (dp749 g18 g3 (g19 g5 (ltRp750 (dp751 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp752 (dp753 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp754 (dp755 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp756 (dp757 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp758 (dp759 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp760 (dp761 g18 g3 (g19 g5 (ltRp762 (dp763 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp764 (dp765 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp766 (dp767 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp768 (dp769 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp770 (dp771 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp772 (dp773 g18 g3 (g19 g5 (ltRp774 (dp775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp776 (dp777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp778 (dp779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp780 (dp781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp782 (dp783 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp784 (dp785 g18 g3 (g19 g5 (ltRp786 (dp787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp788 (dp789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp790 (dp791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp792 (dp793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g391 sg22 I00 sg37 g38 sg39 g391 sbag3 (g7 g8 NtRp794 (dp795 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp796 (dp797 g18 g3 (g19 g5 (ltRp798 (dp799 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp800 (dp801 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp802 (dp803 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp804 (dp805 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Sent' p806 sg22 I00 sg37 g38 sg39 g806 sbag3 (g7 g8 NtRp807 (dp808 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp809 (dp810 g18 g3 (g19 g5 (ltRp811 (dp812 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp813 (dp814 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp815 (dp816 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp817 (dp818 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Sent' p819 sg22 I00 sg37 g38 sg39 g819 sbag3 (g7 g8 NtRp820 (dp821 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp822 (dp823 g18 g3 (g19 g5 (ltRp824 (dp825 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp826 (dp827 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp828 (dp829 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp830 (dp831 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Sent' p832 sg22 I00 sg37 g38 sg39 g832 sbag3 (g7 g8 NtRp833 (dp834 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp835 (dp836 g18 g3 (g19 g5 (ltRp837 (dp838 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp839 (dp840 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp841 (dp842 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp843 (dp844 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Sent' p845 sg22 I00 sg37 g38 sg39 g845 sbag3 (g7 g8 NtRp846 (dp847 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp848 (dp849 g18 g3 (g19 g5 (ltRp850 (dp851 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp852 (dp853 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp854 (dp855 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp856 (dp857 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Sent' p858 sg22 I00 sg37 g38 sg39 g858 sbag3 (g7 g8 NtRp859 (dp860 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp861 (dp862 g18 g3 (g19 g5 (ltRp863 (dp864 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp865 (dp866 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp867 (dp868 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp869 (dp870 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Sent' p871 sg22 I00 sg37 g38 sg39 g871 sbag3 (g7 g8 NtRp872 (dp873 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp874 (dp875 g18 g3 (g19 g5 (ltRp876 (dp877 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp878 (dp879 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp880 (dp881 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp882 (dp883 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Sent' p884 sg22 I00 sg37 g38 sg39 g884 sbag3 (g7 g8 NtRp885 (dp886 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp887 (dp888 g18 g3 (g19 g5 (ltRp889 (dp890 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp891 (dp892 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp893 (dp894 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp895 (dp896 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Sent' p897 sg22 I00 sg37 g38 sg39 g897 sbag3 (g7 g8 NtRp898 (dp899 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp900 (dp901 g18 g3 (g19 g5 (ltRp902 (dp903 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp904 (dp905 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp906 (dp907 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp908 (dp909 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Sent' p910 sg22 I00 sg37 g38 sg39 g910 sbag3 (g7 g8 NtRp911 (dp912 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp913 (dp914 g18 g3 (g19 g5 (ltRp915 (dp916 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp917 (dp918 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp919 (dp920 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp921 (dp922 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Sent' p923 sg22 I00 sg37 g38 sg39 g923 sbag3 (g7 g8 NtRp924 (dp925 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp926 (dp927 g18 g3 (g19 g5 (ltRp928 (dp929 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp930 (dp931 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp932 (dp933 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp934 (dp935 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Received' p936 sg22 I00 sg37 g38 sg39 g936 sbag3 (g7 g8 NtRp937 (dp938 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp939 (dp940 g18 g3 (g19 g5 (ltRp941 (dp942 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp943 (dp944 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp945 (dp946 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp947 (dp948 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Received' p949 sg22 I00 sg37 g38 sg39 g949 sbag3 (g7 g8 NtRp950 (dp951 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp952 (dp953 g18 g3 (g19 g5 (ltRp954 (dp955 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp956 (dp957 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp958 (dp959 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp960 (dp961 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Received' p962 sg22 I00 sg37 g38 sg39 g962 sbag3 (g7 g8 NtRp963 (dp964 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp965 (dp966 g18 g3 (g19 g5 (ltRp967 (dp968 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp969 (dp970 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp971 (dp972 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp973 (dp974 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Received' p975 sg22 I00 sg37 g38 sg39 g975 sbag3 (g7 g8 NtRp976 (dp977 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp978 (dp979 g18 g3 (g19 g5 (ltRp980 (dp981 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp982 (dp983 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp984 (dp985 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp986 (dp987 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Received' p988 sg22 I00 sg37 g38 sg39 g988 sbag3 (g7 g8 NtRp989 (dp990 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp991 (dp992 g18 g3 (g19 g5 (ltRp993 (dp994 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp995 (dp996 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp997 (dp998 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp999 (dp1000 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Received' p1001 sg22 I00 sg37 g38 sg39 g1001 sbag3 (g7 g8 NtRp1002 (dp1003 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp1004 (dp1005 g18 g3 (g19 g5 (ltRp1006 (dp1007 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1008 (dp1009 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1010 (dp1011 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1012 (dp1013 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Received' p1014 sg22 I00 sg37 g38 sg39 g1014 sbag3 (g7 g8 NtRp1015 (dp1016 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp1017 (dp1018 g18 g3 (g19 g5 (ltRp1019 (dp1020 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1021 (dp1022 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1023 (dp1024 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1025 (dp1026 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Received' p1027 sg22 I00 sg37 g38 sg39 g1027 sbag3 (g7 g8 NtRp1028 (dp1029 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp1030 (dp1031 g18 g3 (g19 g5 (ltRp1032 (dp1033 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1034 (dp1035 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1036 (dp1037 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1038 (dp1039 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Received' p1040 sg22 I00 sg37 g38 sg39 g1040 sbag3 (g7 g8 NtRp1041 (dp1042 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp1043 (dp1044 g18 g3 (g19 g5 (ltRp1045 (dp1046 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1047 (dp1048 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1049 (dp1050 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1051 (dp1052 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Received' p1053 sg22 I00 sg37 g38 sg39 g1053 sbag3 (g7 g8 NtRp1054 (dp1055 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp1056 (dp1057 g18 g3 (g19 g5 (ltRp1058 (dp1059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1060 (dp1061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1062 (dp1063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1064 (dp1065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Client' p1066 sg22 I00 sg37 g38 sg39 g1066 sbag3 (g7 g8 NtRp1067 (dp1068 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp1069 (dp1070 g18 g3 (g19 g5 (ltRp1071 (dp1072 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1073 (dp1074 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1075 (dp1076 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1077 (dp1078 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Server' p1079 sg22 I00 sg37 g38 sg39 g1079 sbag3 (g7 g8 NtRp1080 (dp1081 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp1082 (dp1083 g18 g3 (g19 g5 (ltRp1084 (dp1085 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1086 (dp1087 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1088 (dp1089 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1090 (dp1091 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Client to Server' p1092 sg22 I00 sg37 g38 sg39 g1092 sbag3 (g7 g8 NtRp1093 (dp1094 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp1095 (dp1096 g18 g3 (g19 g5 (ltRp1097 (dp1098 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1099 (dp1100 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1101 (dp1102 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1103 (dp1104 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Server to Client' p1105 sg22 I00 sg37 g38 sg39 g1105 sbag3 (g7 g8 NtRp1106 (dp1107 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp1108 (dp1109 g18 g3 (g19 g5 (ltRp1110 (dp1111 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1112 (dp1113 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1114 (dp1115 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1116 (dp1117 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Client to Server' p1118 sg22 I00 sg37 g38 sg39 g1118 sbag3 (g7 g8 NtRp1119 (dp1120 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp1121 (dp1122 g18 g3 (g19 g5 (ltRp1123 (dp1124 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1125 (dp1126 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1127 (dp1128 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1129 (dp1130 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Server to Client' p1131 sg22 I00 sg37 g38 sg39 g1131 sbag3 (g7 g8 NtRp1132 (dp1133 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp1134 (dp1135 g18 g3 (g19 g5 (ltRp1136 (dp1137 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1138 (dp1139 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1140 (dp1141 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1142 (dp1143 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Succeeded' p1144 sg22 I00 sg37 g38 sg39 g1144 sbag3 (g7 g8 NtRp1145 (dp1146 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp1147 (dp1148 g18 g3 (g19 g5 (ltRp1149 (dp1150 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1151 (dp1152 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1153 (dp1154 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1155 (dp1156 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Failed' p1157 sg22 I00 sg37 g38 sg39 g1157 sbag3 (g7 g8 NtRp1158 (dp1159 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp1160 (dp1161 g18 g3 (g19 g5 (ltRp1162 (dp1163 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1164 (dp1165 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1166 (dp1167 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1168 (dp1169 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Protocol Error' p1170 sg22 I00 sg37 g38 sg39 g1170 sbag3 (g7 g8 NtRp1171 (dp1172 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp1173 (dp1174 g18 g3 (g19 g5 (ltRp1175 (dp1176 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1177 (dp1178 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1179 (dp1180 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1181 (dp1182 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Internal Error' p1183 sg22 I00 sg37 g38 sg39 g1183 sbag3 (g7 g8 NtRp1184 (dp1185 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp1186 (dp1187 g18 g3 (g19 g5 (ltRp1188 (dp1189 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1190 (dp1191 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1192 (dp1193 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1194 (dp1195 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Flow Control Error' p1196 sg22 I00 sg37 g38 sg39 g1196 sbag3 (g7 g8 NtRp1197 (dp1198 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp1199 (dp1200 g18 g3 (g19 g5 (ltRp1201 (dp1202 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1203 (dp1204 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1205 (dp1206 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1207 (dp1208 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Settings Timeout Error' p1209 sg22 I00 sg37 g38 sg39 g1209 sbag3 (g7 g8 NtRp1210 (dp1211 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp1212 (dp1213 g18 g3 (g19 g5 (ltRp1214 (dp1215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1216 (dp1217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1218 (dp1219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1220 (dp1221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Closed Error' p1222 sg22 I00 sg37 g38 sg39 g1222 sbag3 (g7 g8 NtRp1223 (dp1224 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp1225 (dp1226 g18 g3 (g19 g5 (ltRp1227 (dp1228 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1229 (dp1230 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1231 (dp1232 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1233 (dp1234 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Frame Size Error' p1235 sg22 I00 sg37 g38 sg39 g1235 sbag3 (g7 g8 NtRp1236 (dp1237 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp1238 (dp1239 g18 g3 (g19 g5 (ltRp1240 (dp1241 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1242 (dp1243 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1244 (dp1245 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1246 (dp1247 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Refused Stream Error' p1248 sg22 I00 sg37 g38 sg39 g1248 sbag3 (g7 g8 NtRp1249 (dp1250 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp1251 (dp1252 g18 g3 (g19 g5 (ltRp1253 (dp1254 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1255 (dp1256 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1257 (dp1258 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1259 (dp1260 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Cancelled Error' p1261 sg22 I00 sg37 g38 sg39 g1261 sbag3 (g7 g8 NtRp1262 (dp1263 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp1264 (dp1265 g18 g3 (g19 g5 (ltRp1266 (dp1267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1268 (dp1269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1270 (dp1271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1272 (dp1273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Compression Error' p1274 sg22 I00 sg37 g38 sg39 g1274 sbag3 (g7 g8 NtRp1275 (dp1276 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp1277 (dp1278 g18 g3 (g19 g5 (ltRp1279 (dp1280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1281 (dp1282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1283 (dp1284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1285 (dp1286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connect Error' p1287 sg22 I00 sg37 g38 sg39 g1287 sbag3 (g7 g8 NtRp1288 (dp1289 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp1290 (dp1291 g18 g3 (g19 g5 (ltRp1292 (dp1293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1294 (dp1295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1296 (dp1297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1298 (dp1299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Enhance Calm Error' p1300 sg22 I00 sg37 g38 sg39 g1300 sbag3 (g7 g8 NtRp1301 (dp1302 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp1303 (dp1304 g18 g3 (g19 g5 (ltRp1305 (dp1306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1307 (dp1308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1309 (dp1310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1311 (dp1312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Inadequate Security Error' p1313 sg22 I00 sg37 g38 sg39 g1313 sbag3 (g7 g8 NtRp1314 (dp1315 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp1316 (dp1317 g18 g3 (g19 g5 (ltRp1318 (dp1319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1320 (dp1321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1322 (dp1323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1324 (dp1325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HTTP1.1 Required Error' p1326 sg22 I00 sg37 g38 sg39 g1326 sbag3 (g7 g8 NtRp1327 (dp1328 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp1329 (dp1330 g18 g3 (g19 g5 (ltRp1331 (dp1332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1333 (dp1334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1335 (dp1336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1337 (dp1338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p1339 sg22 I00 sg37 g38 sg39 g1339 sbag3 (g7 g8 NtRp1340 (dp1341 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp1342 (dp1343 g18 g3 (g19 g5 (ltRp1344 (dp1345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1346 (dp1347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1348 (dp1349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1350 (dp1351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p1352 sg22 I00 sg37 g38 sg39 g1352 sbag3 (g7 g8 NtRp1353 (dp1354 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp1355 (dp1356 g18 g3 (g19 g5 (ltRp1357 (dp1358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1359 (dp1360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1361 (dp1362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1363 (dp1364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p1365 sg22 I00 sg37 g38 sg39 g1365 sbag3 (g7 g8 NtRp1366 (dp1367 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp1368 (dp1369 g18 g3 (g19 g5 (ltRp1370 (dp1371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1372 (dp1373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1374 (dp1375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1376 (dp1377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p1378 sg22 I00 sg37 g38 sg39 g1378 sbag3 (g7 g8 NtRp1379 (dp1380 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp1381 (dp1382 g18 g3 (g19 g5 (ltRp1383 (dp1384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1385 (dp1386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1387 (dp1388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1389 (dp1390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p1391 sg22 I00 sg37 g38 sg39 g1391 sbag3 (g7 g8 NtRp1392 (dp1393 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp1394 (dp1395 g18 g3 (g19 g5 (ltRp1396 (dp1397 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1398 (dp1399 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1400 (dp1401 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1402 (dp1403 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p1404 sg22 I00 sg37 g38 sg39 g1404 sbag3 (g7 g8 NtRp1405 (dp1406 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp1407 (dp1408 g18 g3 (g19 g5 (ltRp1409 (dp1410 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1411 (dp1412 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1413 (dp1414 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1415 (dp1416 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p1417 sg22 I00 sg37 g38 sg39 g1417 sbag3 (g7 g8 NtRp1418 (dp1419 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp1420 (dp1421 g18 g3 (g19 g5 (ltRp1422 (dp1423 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1424 (dp1425 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1426 (dp1427 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1428 (dp1429 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p1430 sg22 I00 sg37 g38 sg39 g1430 sbag3 (g7 g8 NtRp1431 (dp1432 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp1433 (dp1434 g18 g3 (g19 g5 (ltRp1435 (dp1436 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1437 (dp1438 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1439 (dp1440 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1441 (dp1442 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p1443 sg22 I00 sg37 g38 sg39 g1443 sbag3 (g7 g8 NtRp1444 (dp1445 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp1446 (dp1447 g18 g3 (g19 g5 (ltRp1448 (dp1449 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1450 (dp1451 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1452 (dp1453 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1454 (dp1455 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p1456 sg22 I00 sg37 g38 sg39 g1456 sbag3 (g7 g8 NtRp1457 (dp1458 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp1459 (dp1460 g18 g3 (g19 g5 (ltRp1461 (dp1462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1463 (dp1464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1465 (dp1466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1467 (dp1468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p1469 sg22 I00 sg37 g38 sg39 g1469 sbag3 (g7 g8 NtRp1470 (dp1471 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp1472 (dp1473 g18 g3 (g19 g5 (ltRp1474 (dp1475 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1476 (dp1477 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1478 (dp1479 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1480 (dp1481 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p1482 sg22 I00 sg37 g38 sg39 g1482 sbag3 (g7 g8 NtRp1483 (dp1484 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp1485 (dp1486 g18 g3 (g19 g5 (ltRp1487 (dp1488 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1489 (dp1490 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1491 (dp1492 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1493 (dp1494 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p1495 sg22 I00 sg37 g38 sg39 g1495 sbag3 (g7 g8 NtRp1496 (dp1497 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp1498 (dp1499 g18 g3 (g19 g5 (ltRp1500 (dp1501 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1502 (dp1503 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1504 (dp1505 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1506 (dp1507 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p1508 sg22 I00 sg37 g38 sg39 g1508 sbag3 (g7 g8 NtRp1509 (dp1510 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp1511 (dp1512 g18 g3 (g19 g5 (ltRp1513 (dp1514 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1515 (dp1516 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1517 (dp1518 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1519 (dp1520 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p1521 sg22 I00 sg37 g38 sg39 g1521 sbag3 (g7 g8 NtRp1522 (dp1523 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp1524 (dp1525 g18 g3 (g19 g5 (ltRp1526 (dp1527 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1528 (dp1529 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1530 (dp1531 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1532 (dp1533 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p1534 sg22 I00 sg37 g38 sg39 g1534 sbag3 (g7 g8 NtRp1535 (dp1536 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp1537 (dp1538 g18 g3 (g19 g5 (ltRp1539 (dp1540 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1541 (dp1542 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1543 (dp1544 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1545 (dp1546 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p1547 sg22 I00 sg37 g38 sg39 g1547 sbag3 (g7 g8 NtRp1548 (dp1549 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp1550 (dp1551 g18 g3 (g19 g5 (ltRp1552 (dp1553 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1554 (dp1555 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1556 (dp1557 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1558 (dp1559 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p1560 sg22 I00 sg37 g38 sg39 g1560 sbag3 (g7 g8 NtRp1561 (dp1562 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp1563 (dp1564 g18 g3 (g19 g5 (ltRp1565 (dp1566 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1567 (dp1568 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1569 (dp1570 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1571 (dp1572 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p1573 sg22 I00 sg37 g38 sg39 g1573 sbag3 (g7 g8 NtRp1574 (dp1575 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp1576 (dp1577 g18 g3 (g19 g5 (ltRp1578 (dp1579 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1580 (dp1581 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1582 (dp1583 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1584 (dp1585 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p1586 sg22 I00 sg37 g38 sg39 g1586 sbag3 (g7 g8 NtRp1587 (dp1588 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp1589 (dp1590 g18 g3 (g19 g5 (ltRp1591 (dp1592 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1593 (dp1594 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1595 (dp1596 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1597 (dp1598 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p1599 sg22 I00 sg37 g38 sg39 g1599 sbag3 (g7 g8 NtRp1600 (dp1601 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp1602 (dp1603 g18 g3 (g19 g5 (ltRp1604 (dp1605 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1606 (dp1607 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1608 (dp1609 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1610 (dp1611 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p1612 sg22 I00 sg37 g38 sg39 g1612 sbag3 (g7 g8 NtRp1613 (dp1614 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp1615 (dp1616 g18 g3 (g19 g5 (ltRp1617 (dp1618 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1619 (dp1620 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1621 (dp1622 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1623 (dp1624 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p1625 sg22 I00 sg37 g38 sg39 g1625 sbag3 (g7 g8 NtRp1626 (dp1627 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp1628 (dp1629 g18 g3 (g19 g5 (ltRp1630 (dp1631 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1632 (dp1633 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1634 (dp1635 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1636 (dp1637 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p1638 sg22 I00 sg37 g38 sg39 g1638 sbag3 (g7 g8 NtRp1639 (dp1640 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp1641 (dp1642 g18 g3 (g19 g5 (ltRp1643 (dp1644 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1645 (dp1646 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1647 (dp1648 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1649 (dp1650 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p1651 sg22 I00 sg37 g38 sg39 g1651 sbag3 (g7 g8 NtRp1652 (dp1653 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp1654 (dp1655 g18 g3 (g19 g5 (ltRp1656 (dp1657 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1658 (dp1659 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1660 (dp1661 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1662 (dp1663 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p1664 sg22 I00 sg37 g38 sg39 g1664 sbag3 (g7 g8 NtRp1665 (dp1666 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp1667 (dp1668 g18 g3 (g19 g5 (ltRp1669 (dp1670 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1671 (dp1672 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1673 (dp1674 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1675 (dp1676 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p1677 sg22 I00 sg37 g38 sg39 g1677 sbag3 (g7 g8 NtRp1678 (dp1679 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp1680 (dp1681 g18 g3 (g19 g5 (ltRp1682 (dp1683 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1684 (dp1685 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1686 (dp1687 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1688 (dp1689 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p1690 sg22 I00 sg37 g38 sg39 g1690 sbag3 (g7 g8 NtRp1691 (dp1692 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp1693 (dp1694 g18 g3 (g19 g5 (ltRp1695 (dp1696 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1697 (dp1698 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1699 (dp1700 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1701 (dp1702 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p1703 sg22 I00 sg37 g38 sg39 g1703 sbag3 (g7 g8 NtRp1704 (dp1705 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp1706 (dp1707 g18 g3 (g19 g5 (ltRp1708 (dp1709 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1710 (dp1711 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1712 (dp1713 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1714 (dp1715 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p1716 sg22 I00 sg37 g38 sg39 g1716 sbag3 (g7 g8 NtRp1717 (dp1718 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp1719 (dp1720 g18 g3 (g19 g5 (ltRp1721 (dp1722 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1723 (dp1724 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1725 (dp1726 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1727 (dp1728 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p1729 sg22 I00 sg37 g38 sg39 g1729 sbag3 (g7 g8 NtRp1730 (dp1731 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp1732 (dp1733 g18 g3 (g19 g5 (ltRp1734 (dp1735 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1736 (dp1737 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1738 (dp1739 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1740 (dp1741 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p1742 sg22 I00 sg37 g38 sg39 g1742 sbag3 (g7 g8 NtRp1743 (dp1744 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp1745 (dp1746 g18 g3 (g19 g5 (ltRp1747 (dp1748 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1749 (dp1750 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1751 (dp1752 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1753 (dp1754 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p1755 sg22 I00 sg37 g38 sg39 g1755 sbag3 (g7 g8 NtRp1756 (dp1757 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp1758 (dp1759 g18 g3 (g19 g5 (ltRp1760 (dp1761 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1762 (dp1763 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1764 (dp1765 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1766 (dp1767 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p1768 sg22 I00 sg37 g38 sg39 g1768 sbag3 (g7 g8 NtRp1769 (dp1770 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp1771 (dp1772 g18 g3 (g19 g5 (ltRp1773 (dp1774 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1775 (dp1776 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1777 (dp1778 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1779 (dp1780 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p1781 sg22 I00 sg37 g38 sg39 g1781 sbag3 (g7 g8 NtRp1782 (dp1783 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp1784 (dp1785 g18 g3 (g19 g5 (ltRp1786 (dp1787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1788 (dp1789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1790 (dp1791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1792 (dp1793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p1794 sg22 I00 sg37 g38 sg39 g1794 sbag3 (g7 g8 NtRp1795 (dp1796 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp1797 (dp1798 g18 g3 (g19 g5 (ltRp1799 (dp1800 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1801 (dp1802 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1803 (dp1804 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1805 (dp1806 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p1807 sg22 I00 sg37 g38 sg39 g1807 sbag3 (g7 g8 NtRp1808 (dp1809 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp1810 (dp1811 g18 g3 (g19 g5 (ltRp1812 (dp1813 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1814 (dp1815 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1816 (dp1817 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1818 (dp1819 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p1820 sg22 I00 sg37 g38 sg39 g1820 sbag3 (g7 g8 NtRp1821 (dp1822 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp1823 (dp1824 g18 g3 (g19 g5 (ltRp1825 (dp1826 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1827 (dp1828 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1829 (dp1830 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1831 (dp1832 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p1833 sg22 I00 sg37 g38 sg39 g1833 sbag3 (g7 g8 NtRp1834 (dp1835 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp1836 (dp1837 g18 g3 (g19 g5 (ltRp1838 (dp1839 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1840 (dp1841 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1842 (dp1843 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1844 (dp1845 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p1846 sg22 I00 sg37 g38 sg39 g1846 sbag3 (g7 g8 NtRp1847 (dp1848 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp1849 (dp1850 g18 g3 (g19 g5 (ltRp1851 (dp1852 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1853 (dp1854 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1855 (dp1856 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1857 (dp1858 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p1859 sg22 I00 sg37 g38 sg39 g1859 sbag3 (g7 g8 NtRp1860 (dp1861 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp1862 (dp1863 g18 g3 (g19 g5 (ltRp1864 (dp1865 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1866 (dp1867 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1868 (dp1869 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1870 (dp1871 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p1872 sg22 I00 sg37 g38 sg39 g1872 sbag3 (g7 g8 NtRp1873 (dp1874 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp1875 (dp1876 g18 g3 (g19 g5 (ltRp1877 (dp1878 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1879 (dp1880 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1881 (dp1882 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1883 (dp1884 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p1885 sg22 I00 sg37 g38 sg39 g1885 sbag3 (g7 g8 NtRp1886 (dp1887 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp1888 (dp1889 g18 g3 (g19 g5 (ltRp1890 (dp1891 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1892 (dp1893 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1894 (dp1895 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1896 (dp1897 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p1898 sg22 I00 sg37 g38 sg39 g1898 sbag3 (g7 g8 NtRp1899 (dp1900 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp1901 (dp1902 g18 g3 (g19 g5 (ltRp1903 (dp1904 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1905 (dp1906 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1907 (dp1908 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1909 (dp1910 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p1911 sg22 I00 sg37 g38 sg39 g1911 sbag3 (g7 g8 NtRp1912 (dp1913 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp1914 (dp1915 g18 g3 (g19 g5 (ltRp1916 (dp1917 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1918 (dp1919 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1920 (dp1921 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1922 (dp1923 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p1924 sg22 I00 sg37 g38 sg39 g1924 sbag3 (g7 g8 NtRp1925 (dp1926 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp1927 (dp1928 g18 g3 (g19 g5 (ltRp1929 (dp1930 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1931 (dp1932 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1933 (dp1934 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1935 (dp1936 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p1937 sg22 I00 sg37 g38 sg39 g1937 sbag3 (g7 g8 NtRp1938 (dp1939 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp1940 (dp1941 g18 g3 (g19 g5 (ltRp1942 (dp1943 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1944 (dp1945 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1946 (dp1947 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1948 (dp1949 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p1950 sg22 I00 sg37 g38 sg39 g1950 sbag3 (g7 g8 NtRp1951 (dp1952 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp1953 (dp1954 g18 g3 (g19 g5 (ltRp1955 (dp1956 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1957 (dp1958 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1959 (dp1960 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1961 (dp1962 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p1963 sg22 I00 sg37 g38 sg39 g1963 sbag3 (g7 g8 NtRp1964 (dp1965 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp1966 (dp1967 g18 g3 (g19 g5 (ltRp1968 (dp1969 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1970 (dp1971 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1972 (dp1973 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1974 (dp1975 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p1976 sg22 I00 sg37 g38 sg39 g1976 sbag3 (g7 g8 NtRp1977 (dp1978 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp1979 (dp1980 g18 g3 (g19 g5 (ltRp1981 (dp1982 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1983 (dp1984 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1985 (dp1986 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1987 (dp1988 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p1989 sg22 I00 sg37 g38 sg39 g1989 sbag3 (g7 g8 NtRp1990 (dp1991 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp1992 (dp1993 g18 g3 (g19 g5 (ltRp1994 (dp1995 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1996 (dp1997 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1998 (dp1999 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2000 (dp2001 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p2002 sg22 I00 sg37 g38 sg39 g2002 sbag3 (g7 g8 NtRp2003 (dp2004 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp2005 (dp2006 g18 g3 (g19 g5 (ltRp2007 (dp2008 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2009 (dp2010 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2011 (dp2012 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2013 (dp2014 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p2015 sg22 I00 sg37 g38 sg39 g2015 sbag3 (g7 g8 NtRp2016 (dp2017 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp2018 (dp2019 g18 g3 (g19 g5 (ltRp2020 (dp2021 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2022 (dp2023 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2024 (dp2025 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2026 (dp2027 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p2028 sg22 I00 sg37 g38 sg39 g2028 sbag3 (g7 g8 NtRp2029 (dp2030 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp2031 (dp2032 g18 g3 (g19 g5 (ltRp2033 (dp2034 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2035 (dp2036 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2037 (dp2038 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2039 (dp2040 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p2041 sg22 I00 sg37 g38 sg39 g2041 sbag3 (g7 g8 NtRp2042 (dp2043 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp2044 (dp2045 g18 g3 (g19 g5 (ltRp2046 (dp2047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2048 (dp2049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2050 (dp2051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2052 (dp2053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p2054 sg22 I00 sg37 g38 sg39 g2054 sbag3 (g7 g8 NtRp2055 (dp2056 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp2057 (dp2058 g18 g3 (g19 g5 (ltRp2059 (dp2060 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2061 (dp2062 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2063 (dp2064 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2065 (dp2066 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p2067 sg22 I00 sg37 g38 sg39 g2067 sbag3 (g7 g8 NtRp2068 (dp2069 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp2070 (dp2071 g18 g3 (g19 g5 (ltRp2072 (dp2073 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2074 (dp2075 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2076 (dp2077 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2078 (dp2079 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p2080 sg22 I00 sg37 g38 sg39 g2080 sbag3 (g7 g8 NtRp2081 (dp2082 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp2083 (dp2084 g18 g3 (g19 g5 (ltRp2085 (dp2086 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2087 (dp2088 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2089 (dp2090 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2091 (dp2092 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p2093 sg22 I00 sg37 g38 sg39 g2093 sbag3 (g7 g8 NtRp2094 (dp2095 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp2096 (dp2097 g18 g3 (g19 g5 (ltRp2098 (dp2099 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2100 (dp2101 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2102 (dp2103 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2104 (dp2105 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p2106 sg22 I00 sg37 g38 sg39 g2106 sbag3 (g7 g8 NtRp2107 (dp2108 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp2109 (dp2110 g18 g3 (g19 g5 (ltRp2111 (dp2112 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2113 (dp2114 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2115 (dp2116 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2117 (dp2118 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p2119 sg22 I00 sg37 g38 sg39 g2119 sbag3 (g7 g8 NtRp2120 (dp2121 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp2122 (dp2123 g18 g3 (g19 g5 (ltRp2124 (dp2125 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2126 (dp2127 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2128 (dp2129 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2130 (dp2131 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p2132 sg22 I00 sg37 g38 sg39 g2132 sbag3 (g7 g8 NtRp2133 (dp2134 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp2135 (dp2136 g18 g3 (g19 g5 (ltRp2137 (dp2138 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2139 (dp2140 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2141 (dp2142 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2143 (dp2144 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p2145 sg22 I00 sg37 g38 sg39 g2145 sbag3 (g7 g8 NtRp2146 (dp2147 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp2148 (dp2149 g18 g3 (g19 g5 (ltRp2150 (dp2151 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2152 (dp2153 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2154 (dp2155 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2156 (dp2157 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p2158 sg22 I00 sg37 g38 sg39 g2158 sbag3 (g7 g8 NtRp2159 (dp2160 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp2161 (dp2162 g18 g3 (g19 g5 (ltRp2163 (dp2164 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2165 (dp2166 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2167 (dp2168 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2169 (dp2170 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p2171 sg22 I00 sg37 g38 sg39 g2171 sbag3 (g7 g8 NtRp2172 (dp2173 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp2174 (dp2175 g18 g3 (g19 g5 (ltRp2176 (dp2177 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2178 (dp2179 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2180 (dp2181 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2182 (dp2183 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p2184 sg22 I00 sg37 g38 sg39 g2184 sbag3 (g7 g8 NtRp2185 (dp2186 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp2187 (dp2188 g18 g3 (g19 g5 (ltRp2189 (dp2190 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2191 (dp2192 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2193 (dp2194 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2195 (dp2196 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p2197 sg22 I00 sg37 g38 sg39 g2197 sbag3 (g7 g8 NtRp2198 (dp2199 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp2200 (dp2201 g18 g3 (g19 g5 (ltRp2202 (dp2203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2204 (dp2205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2206 (dp2207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2208 (dp2209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p2210 sg22 I00 sg37 g38 sg39 g2210 sbag3 (g7 g8 NtRp2211 (dp2212 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp2213 (dp2214 g18 g3 (g19 g5 (ltRp2215 (dp2216 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2217 (dp2218 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2219 (dp2220 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2221 (dp2222 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p2223 sg22 I00 sg37 g38 sg39 g2223 sbag3 (g7 g8 NtRp2224 (dp2225 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp2226 (dp2227 g18 g3 (g19 g5 (ltRp2228 (dp2229 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2230 (dp2231 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2232 (dp2233 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2234 (dp2235 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p2236 sg22 I00 sg37 g38 sg39 g2236 sbag3 (g7 g8 NtRp2237 (dp2238 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp2239 (dp2240 g18 g3 (g19 g5 (ltRp2241 (dp2242 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2243 (dp2244 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2245 (dp2246 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2247 (dp2248 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p2249 sg22 I00 sg37 g38 sg39 g2249 sbag3 (g7 g8 NtRp2250 (dp2251 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp2252 (dp2253 g18 g3 (g19 g5 (ltRp2254 (dp2255 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2256 (dp2257 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2258 (dp2259 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2260 (dp2261 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p2262 sg22 I00 sg37 g38 sg39 g2262 sbag3 (g7 g8 NtRp2263 (dp2264 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp2265 (dp2266 g18 g3 (g19 g5 (ltRp2267 (dp2268 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2269 (dp2270 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2271 (dp2272 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2273 (dp2274 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p2275 sg22 I00 sg37 g38 sg39 g2275 sbag3 (g7 g8 NtRp2276 (dp2277 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp2278 (dp2279 g18 g3 (g19 g5 (ltRp2280 (dp2281 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2282 (dp2283 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2284 (dp2285 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2286 (dp2287 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p2288 sg22 I00 sg37 g38 sg39 g2288 sbag3 (g7 g8 NtRp2289 (dp2290 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp2291 (dp2292 g18 g3 (g19 g5 (ltRp2293 (dp2294 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2295 (dp2296 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2297 (dp2298 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2299 (dp2300 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p2301 sg22 I00 sg37 g38 sg39 g2301 sbag3 (g7 g8 NtRp2302 (dp2303 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp2304 (dp2305 g18 g3 (g19 g5 (ltRp2306 (dp2307 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2308 (dp2309 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2310 (dp2311 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2312 (dp2313 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p2314 sg22 I00 sg37 g38 sg39 g2314 sbag3 (g7 g8 NtRp2315 (dp2316 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp2317 (dp2318 g18 g3 (g19 g5 (ltRp2319 (dp2320 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2321 (dp2322 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2323 (dp2324 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2325 (dp2326 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p2327 sg22 I00 sg37 g38 sg39 g2327 sbag3 (g7 g8 NtRp2328 (dp2329 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp2330 (dp2331 g18 g3 (g19 g5 (ltRp2332 (dp2333 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2334 (dp2335 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2336 (dp2337 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2338 (dp2339 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p2340 sg22 I00 sg37 g38 sg39 g2340 sbag3 (g7 g8 NtRp2341 (dp2342 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp2343 (dp2344 g18 g3 (g19 g5 (ltRp2345 (dp2346 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2347 (dp2348 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2349 (dp2350 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2351 (dp2352 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p2353 sg22 I00 sg37 g38 sg39 g2353 sbag3 (g7 g8 NtRp2354 (dp2355 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp2356 (dp2357 g18 g3 (g19 g5 (ltRp2358 (dp2359 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2360 (dp2361 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2362 (dp2363 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2364 (dp2365 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p2366 sg22 I00 sg37 g38 sg39 g2366 sbag3 (g7 g8 NtRp2367 (dp2368 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp2369 (dp2370 g18 g3 (g19 g5 (ltRp2371 (dp2372 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2373 (dp2374 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2375 (dp2376 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2377 (dp2378 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p2379 sg22 I00 sg37 g38 sg39 g2379 sbag3 (g7 g8 NtRp2380 (dp2381 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp2382 (dp2383 g18 g3 (g19 g5 (ltRp2384 (dp2385 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2386 (dp2387 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2388 (dp2389 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2390 (dp2391 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p2392 sg22 I00 sg37 g38 sg39 g2392 sbag3 (g7 g8 NtRp2393 (dp2394 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp2395 (dp2396 g18 g3 (g19 g5 (ltRp2397 (dp2398 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2399 (dp2400 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2401 (dp2402 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2403 (dp2404 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p2405 sg22 I00 sg37 g38 sg39 g2405 sbag3 (g7 g8 NtRp2406 (dp2407 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp2408 (dp2409 g18 g3 (g19 g5 (ltRp2410 (dp2411 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2412 (dp2413 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2414 (dp2415 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2416 (dp2417 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p2418 sg22 I00 sg37 g38 sg39 g2418 sbag3 (g7 g8 NtRp2419 (dp2420 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp2421 (dp2422 g18 g3 (g19 g5 (ltRp2423 (dp2424 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2425 (dp2426 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2427 (dp2428 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2429 (dp2430 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p2431 sg22 I00 sg37 g38 sg39 g2431 sbag3 (g7 g8 NtRp2432 (dp2433 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp2434 (dp2435 g18 g3 (g19 g5 (ltRp2436 (dp2437 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2438 (dp2439 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2440 (dp2441 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2442 (dp2443 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p2444 sg22 I00 sg37 g38 sg39 g2444 sbag3 (g7 g8 NtRp2445 (dp2446 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp2447 (dp2448 g18 g3 (g19 g5 (ltRp2449 (dp2450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2451 (dp2452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2453 (dp2454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2455 (dp2456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p2457 sg22 I00 sg37 g38 sg39 g2457 sbag3 (g7 g8 NtRp2458 (dp2459 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp2460 (dp2461 g18 g3 (g19 g5 (ltRp2462 (dp2463 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2464 (dp2465 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2466 (dp2467 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2468 (dp2469 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p2470 sg22 I00 sg37 g38 sg39 g2470 sbag3 (g7 g8 NtRp2471 (dp2472 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp2473 (dp2474 g18 g3 (g19 g5 (ltRp2475 (dp2476 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2477 (dp2478 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2479 (dp2480 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2481 (dp2482 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p2483 sg22 I00 sg37 g38 sg39 g2483 sbag3 (g7 g8 NtRp2484 (dp2485 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp2486 (dp2487 g18 g3 (g19 g5 (ltRp2488 (dp2489 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2490 (dp2491 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2492 (dp2493 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2494 (dp2495 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p2496 sg22 I00 sg37 g38 sg39 g2496 sbag3 (g7 g8 NtRp2497 (dp2498 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp2499 (dp2500 g18 g3 (g19 g5 (ltRp2501 (dp2502 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2503 (dp2504 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2505 (dp2506 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2507 (dp2508 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p2509 sg22 I00 sg37 g38 sg39 g2509 sbag3 (g7 g8 NtRp2510 (dp2511 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp2512 (dp2513 g18 g3 (g19 g5 (ltRp2514 (dp2515 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2516 (dp2517 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2518 (dp2519 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2520 (dp2521 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p2522 sg22 I00 sg37 g38 sg39 g2522 sbag3 (g7 g8 NtRp2523 (dp2524 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp2525 (dp2526 g18 g3 (g19 g5 (ltRp2527 (dp2528 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2529 (dp2530 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2531 (dp2532 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2533 (dp2534 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p2535 sg22 I00 sg37 g38 sg39 g2535 sbag3 (g7 g8 NtRp2536 (dp2537 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp2538 (dp2539 g18 g3 (g19 g5 (ltRp2540 (dp2541 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2542 (dp2543 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2544 (dp2545 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2546 (dp2547 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p2548 sg22 I00 sg37 g38 sg39 g2548 sbag3 (g7 g8 NtRp2549 (dp2550 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp2551 (dp2552 g18 g3 (g19 g5 (ltRp2553 (dp2554 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2555 (dp2556 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2557 (dp2558 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2559 (dp2560 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p2561 sg22 I00 sg37 g38 sg39 g2561 sbag3 (g7 g8 NtRp2562 (dp2563 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp2564 (dp2565 g18 g3 (g19 g5 (ltRp2566 (dp2567 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2568 (dp2569 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2570 (dp2571 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2572 (dp2573 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p2574 sg22 I00 sg37 g38 sg39 g2574 sbag3 (g7 g8 NtRp2575 (dp2576 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp2577 (dp2578 g18 g3 (g19 g5 (ltRp2579 (dp2580 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2581 (dp2582 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2583 (dp2584 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2585 (dp2586 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p2587 sg22 I00 sg37 g38 sg39 g2587 sbag3 (g7 g8 NtRp2588 (dp2589 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp2590 (dp2591 g18 g3 (g19 g5 (ltRp2592 (dp2593 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2594 (dp2595 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2596 (dp2597 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2598 (dp2599 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p2600 sg22 I00 sg37 g38 sg39 g2600 sbag3 (g7 g8 NtRp2601 (dp2602 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp2603 (dp2604 g18 g3 (g19 g5 (ltRp2605 (dp2606 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2607 (dp2608 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2609 (dp2610 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2611 (dp2612 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p2613 sg22 I00 sg37 g38 sg39 g2613 sbag3 (g7 g8 NtRp2614 (dp2615 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp2616 (dp2617 g18 g3 (g19 g5 (ltRp2618 (dp2619 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2620 (dp2621 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2622 (dp2623 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2624 (dp2625 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p2626 sg22 I00 sg37 g38 sg39 g2626 sbag3 (g7 g8 NtRp2627 (dp2628 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp2629 (dp2630 g18 g3 (g19 g5 (ltRp2631 (dp2632 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2633 (dp2634 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2635 (dp2636 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2637 (dp2638 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p2639 sg22 I00 sg37 g38 sg39 g2639 sbag3 (g7 g8 NtRp2640 (dp2641 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp2642 (dp2643 g18 g3 (g19 g5 (ltRp2644 (dp2645 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2646 (dp2647 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2648 (dp2649 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2650 (dp2651 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p2652 sg22 I00 sg37 g38 sg39 g2652 sbag3 (g7 g8 NtRp2653 (dp2654 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp2655 (dp2656 g18 g3 (g19 g5 (ltRp2657 (dp2658 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2659 (dp2660 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2661 (dp2662 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2663 (dp2664 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p2665 sg22 I00 sg37 g38 sg39 g2665 sbag3 (g7 g8 NtRp2666 (dp2667 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp2668 (dp2669 g18 g3 (g19 g5 (ltRp2670 (dp2671 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2672 (dp2673 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2674 (dp2675 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2676 (dp2677 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p2678 sg22 I00 sg37 g38 sg39 g2678 sbag3 (g7 g8 NtRp2679 (dp2680 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp2681 (dp2682 g18 g3 (g19 g5 (ltRp2683 (dp2684 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2685 (dp2686 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2687 (dp2688 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2689 (dp2690 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p2691 sg22 I00 sg37 g38 sg39 g2691 sbag3 (g7 g8 NtRp2692 (dp2693 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp2694 (dp2695 g18 g3 (g19 g5 (ltRp2696 (dp2697 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2698 (dp2699 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2700 (dp2701 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2702 (dp2703 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p2704 sg22 I00 sg37 g38 sg39 g2704 sbag3 (g7 g8 NtRp2705 (dp2706 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp2707 (dp2708 g18 g3 (g19 g5 (ltRp2709 (dp2710 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2711 (dp2712 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2713 (dp2714 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2715 (dp2716 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p2717 sg22 I00 sg37 g38 sg39 g2717 sbag3 (g7 g8 NtRp2718 (dp2719 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp2720 (dp2721 g18 g3 (g19 g5 (ltRp2722 (dp2723 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2724 (dp2725 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2726 (dp2727 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2728 (dp2729 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p2730 sg22 I00 sg37 g38 sg39 g2730 sbag3 (g7 g8 NtRp2731 (dp2732 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp2733 (dp2734 g18 g3 (g19 g5 (ltRp2735 (dp2736 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2737 (dp2738 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2739 (dp2740 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2741 (dp2742 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p2743 sg22 I00 sg37 g38 sg39 g2743 sbag3 (g7 g8 NtRp2744 (dp2745 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp2746 (dp2747 g18 g3 (g19 g5 (ltRp2748 (dp2749 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2750 (dp2751 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2752 (dp2753 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2754 (dp2755 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p2756 sg22 I00 sg37 g38 sg39 g2756 sbag3 (g7 g8 NtRp2757 (dp2758 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp2759 (dp2760 g18 g3 (g19 g5 (ltRp2761 (dp2762 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2763 (dp2764 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2765 (dp2766 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2767 (dp2768 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p2769 sg22 I00 sg37 g38 sg39 g2769 sbag3 (g7 g8 NtRp2770 (dp2771 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp2772 (dp2773 g18 g3 (g19 g5 (ltRp2774 (dp2775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2776 (dp2777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2778 (dp2779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2780 (dp2781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p2782 sg22 I00 sg37 g38 sg39 g2782 sbag3 (g7 g8 NtRp2783 (dp2784 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp2785 (dp2786 g18 g3 (g19 g5 (ltRp2787 (dp2788 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2789 (dp2790 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2791 (dp2792 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2793 (dp2794 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p2795 sg22 I00 sg37 g38 sg39 g2795 sbatRp2796 (dp2797 g12 I185 sg22 I00 sg11 NsbsS'HTTP Client Per URL' p2798 g3 (g4 g5 (lp2799 g3 (g7 g8 NtRp2800 (dp2801 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp2802 (dp2803 g18 g3 (g19 g5 (ltRp2804 (dp2805 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2806 (dp2807 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2808 (dp2809 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2810 (dp2811 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Sent' p2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp2813 (dp2814 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp2815 (dp2816 g18 g3 (g19 g5 (ltRp2817 (dp2818 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2819 (dp2820 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2821 (dp2822 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2823 (dp2824 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp2826 (dp2827 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp2828 (dp2829 g18 g3 (g19 g5 (ltRp2830 (dp2831 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2832 (dp2833 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2834 (dp2835 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2836 (dp2837 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (Provisional)' p2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp2839 (dp2840 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp2841 (dp2842 g18 g3 (g19 g5 (ltRp2843 (dp2844 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2845 (dp2846 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2847 (dp2848 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2849 (dp2850 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp2852 (dp2853 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp2854 (dp2855 g18 g3 (g19 g5 (ltRp2856 (dp2857 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2858 (dp2859 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2860 (dp2861 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2862 (dp2863 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write)' p2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp2865 (dp2866 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp2867 (dp2868 g18 g3 (g19 g5 (ltRp2869 (dp2870 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2871 (dp2872 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2873 (dp2874 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2875 (dp2876 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Read)' p2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp2878 (dp2879 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp2880 (dp2881 g18 g3 (g19 g5 (ltRp2882 (dp2883 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2884 (dp2885 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2886 (dp2887 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2888 (dp2889 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Bad Header)' p2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp2891 (dp2892 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp2893 (dp2894 g18 g3 (g19 g5 (ltRp2895 (dp2896 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2897 (dp2898 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2899 (dp2900 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2901 (dp2902 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx)' p2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp2904 (dp2905 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp2906 (dp2907 g18 g3 (g19 g5 (ltRp2908 (dp2909 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2910 (dp2911 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2912 (dp2913 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2914 (dp2915 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (400)' p2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp2917 (dp2918 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp2919 (dp2920 g18 g3 (g19 g5 (ltRp2921 (dp2922 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2923 (dp2924 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2925 (dp2926 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2927 (dp2928 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (401)' p2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp2930 (dp2931 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp2932 (dp2933 g18 g3 (g19 g5 (ltRp2934 (dp2935 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2936 (dp2937 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2938 (dp2939 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2940 (dp2941 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (403)' p2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp2943 (dp2944 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp2945 (dp2946 g18 g3 (g19 g5 (ltRp2947 (dp2948 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2949 (dp2950 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2951 (dp2952 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2953 (dp2954 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp2956 (dp2957 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp2958 (dp2959 g18 g3 (g19 g5 (ltRp2960 (dp2961 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2962 (dp2963 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2964 (dp2965 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2966 (dp2967 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (407)' p2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp2969 (dp2970 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp2971 (dp2972 g18 g3 (g19 g5 (ltRp2973 (dp2974 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2975 (dp2976 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2977 (dp2978 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2979 (dp2980 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (408)' p2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp2982 (dp2983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp2984 (dp2985 g18 g3 (g19 g5 (ltRp2986 (dp2987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2988 (dp2989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2990 (dp2991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2992 (dp2993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx other)' p2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp2995 (dp2996 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp2997 (dp2998 g18 g3 (g19 g5 (ltRp2999 (dp3000 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3001 (dp3002 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3003 (dp3004 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3005 (dp3006 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx)' p3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp3008 (dp3009 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp3010 (dp3011 g18 g3 (g19 g5 (ltRp3012 (dp3013 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3014 (dp3015 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3016 (dp3017 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3018 (dp3019 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (505)' p3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp3021 (dp3022 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp3023 (dp3024 g18 g3 (g19 g5 (ltRp3025 (dp3026 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3027 (dp3028 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3029 (dp3030 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3031 (dp3032 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx other)' p3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp3034 (dp3035 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp3036 (dp3037 g18 g3 (g19 g5 (ltRp3038 (dp3039 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3040 (dp3041 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3042 (dp3043 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3044 (dp3045 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (other)' p3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp3047 (dp3048 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp3049 (dp3050 g18 g3 (g19 g5 (ltRp3051 (dp3052 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3053 (dp3054 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3055 (dp3056 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3057 (dp3058 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Timeout)' p3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp3060 (dp3061 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp3062 (dp3063 g18 g3 (g19 g5 (ltRp3064 (dp3065 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3066 (dp3067 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3068 (dp3069 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3070 (dp3071 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp3073 (dp3074 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp3075 (dp3076 g18 g3 (g19 g5 (ltRp3077 (dp3078 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3079 (dp3080 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3081 (dp3082 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3083 (dp3084 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted Before Request' p3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp3086 (dp3087 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp3088 (dp3089 g18 g3 (g19 g5 (ltRp3090 (dp3091 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3092 (dp3093 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3094 (dp3095 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3096 (dp3097 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted After Request' p3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp3099 (dp3100 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp3101 (dp3102 g18 g3 (g19 g5 (ltRp3103 (dp3104 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3105 (dp3106 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3107 (dp3108 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3109 (dp3110 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received With Match' p3111 sg22 I00 sg37 g38 sg39 g3111 sbag3 (g7 g8 NtRp3112 (dp3113 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp3114 (dp3115 g18 g3 (g19 g5 (ltRp3116 (dp3117 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3118 (dp3119 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3120 (dp3121 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3122 (dp3123 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received Without Match' p3124 sg22 I00 sg37 g38 sg39 g3124 sbag3 (g7 g8 NtRp3125 (dp3126 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp3127 (dp3128 g18 g3 (g19 g5 (ltRp3129 (dp3130 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3131 (dp3132 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3133 (dp3134 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3135 (dp3136 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Intermediate Responses Received (1xx)' p3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3138 (dp3139 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp3140 (dp3141 g18 g3 (g19 g5 (ltRp3142 (dp3143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3144 (dp3145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3146 (dp3147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3148 (dp3149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (2xx)' p3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3151 (dp3152 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp3153 (dp3154 g18 g3 (g19 g5 (ltRp3155 (dp3156 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3157 (dp3158 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3159 (dp3160 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3161 (dp3162 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (3xx)' p3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3164 (dp3165 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp3166 (dp3167 g18 g3 (g19 g5 (ltRp3168 (dp3169 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3170 (dp3171 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3172 (dp3173 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3174 (dp3175 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (301)' p3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3177 (dp3178 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp3179 (dp3180 g18 g3 (g19 g5 (ltRp3181 (dp3182 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3183 (dp3184 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3185 (dp3186 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3187 (dp3188 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (302)' p3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp3190 (dp3191 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp3192 (dp3193 g18 g3 (g19 g5 (ltRp3194 (dp3195 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3196 (dp3197 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3198 (dp3199 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3200 (dp3201 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (303)' p3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp3203 (dp3204 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp3205 (dp3206 g18 g3 (g19 g5 (ltRp3207 (dp3208 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3209 (dp3210 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3211 (dp3212 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3213 (dp3214 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (307)' p3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp3216 (dp3217 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp3218 (dp3219 g18 g3 (g19 g5 (ltRp3220 (dp3221 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3222 (dp3223 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3224 (dp3225 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3226 (dp3227 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Sent' p3228 sg22 I00 sg37 g38 sg39 g3228 sbag3 (g7 g8 NtRp3229 (dp3230 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp3231 (dp3232 g18 g3 (g19 g5 (ltRp3233 (dp3234 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3235 (dp3236 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3237 (dp3238 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3239 (dp3240 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Headers Received' p3241 sg22 I00 sg37 g38 sg39 g3241 sbag3 (g7 g8 NtRp3242 (dp3243 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp3244 (dp3245 g18 g3 (g19 g5 (ltRp3246 (dp3247 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3248 (dp3249 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3250 (dp3251 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3252 (dp3253 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Received' p3254 sg22 I00 sg37 g38 sg39 g3254 sbag3 (g7 g8 NtRp3255 (dp3256 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp3257 (dp3258 g18 g3 (g19 g5 (ltRp3259 (dp3260 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3261 (dp3262 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3263 (dp3264 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3265 (dp3266 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Successful' p3267 sg22 I00 sg37 g38 sg39 g3267 sbag3 (g7 g8 NtRp3268 (dp3269 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp3270 (dp3271 g18 g3 (g19 g5 (ltRp3272 (dp3273 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3274 (dp3275 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3276 (dp3277 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3278 (dp3279 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Failed' p3280 sg22 I00 sg37 g38 sg39 g3280 sbag3 (g7 g8 NtRp3281 (dp3282 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp3283 (dp3284 g18 g3 (g19 g5 (ltRp3285 (dp3286 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3287 (dp3288 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3289 (dp3290 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3291 (dp3292 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p3293 sg22 I00 sg37 g38 sg39 g3293 sbag3 (g7 g8 NtRp3294 (dp3295 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp3296 (dp3297 g18 g3 (g19 g5 (ltRp3298 (dp3299 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3300 (dp3301 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3302 (dp3303 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3304 (dp3305 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p3306 sg22 I00 sg37 g261 sg39 g3306 sbag3 (g7 g8 NtRp3307 (dp3308 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp3309 (dp3310 g18 g3 (g19 g5 (ltRp3311 (dp3312 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3313 (dp3314 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3315 (dp3316 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3317 (dp3318 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p3319 sg22 I00 sg37 g261 sg39 g3319 sbag3 (g7 g8 NtRp3320 (dp3321 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp3322 (dp3323 g18 g3 (g19 g5 (ltRp3324 (dp3325 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3326 (dp3327 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3328 (dp3329 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3330 (dp3331 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Sent' p3332 sg22 I00 sg37 g38 sg39 g3332 sbag3 (g7 g8 NtRp3333 (dp3334 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp3335 (dp3336 g18 g3 (g19 g5 (ltRp3337 (dp3338 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3339 (dp3340 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3341 (dp3342 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3343 (dp3344 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p3345 sg22 I00 sg37 g38 sg39 g3345 sbag3 (g7 g8 NtRp3346 (dp3347 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp3348 (dp3349 g18 g3 (g19 g5 (ltRp3350 (dp3351 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3352 (dp3353 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3354 (dp3355 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3356 (dp3357 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size in Request' p3358 sg22 I00 sg37 g261 sg39 g3358 sbag3 (g7 g8 NtRp3359 (dp3360 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp3361 (dp3362 g18 g3 (g19 g5 (ltRp3363 (dp3364 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3365 (dp3366 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3367 (dp3368 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3369 (dp3370 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p3371 sg22 I00 sg37 g261 sg39 g3371 sbag3 (g7 g8 NtRp3372 (dp3373 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp3374 (dp3375 g18 g3 (g19 g5 (ltRp3376 (dp3377 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3378 (dp3379 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3380 (dp3381 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3382 (dp3383 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name1-Value1' p3384 sg22 I00 sg37 S'kString' p3385 sg39 g3384 sbag3 (g7 g8 NtRp3386 (dp3387 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp3388 (dp3389 g18 g3 (g19 g5 (ltRp3390 (dp3391 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3392 (dp3393 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3394 (dp3395 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3396 (dp3397 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter1' p3398 sg22 I00 sg37 g38 sg39 g3398 sbag3 (g7 g8 NtRp3399 (dp3400 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp3401 (dp3402 g18 g3 (g19 g5 (ltRp3403 (dp3404 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3405 (dp3406 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3407 (dp3408 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3409 (dp3410 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name2-Value2' p3411 sg22 I00 sg37 g3385 sg39 g3411 sbag3 (g7 g8 NtRp3412 (dp3413 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp3414 (dp3415 g18 g3 (g19 g5 (ltRp3416 (dp3417 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3418 (dp3419 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3420 (dp3421 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3422 (dp3423 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter2' p3424 sg22 I00 sg37 g38 sg39 g3424 sbag3 (g7 g8 NtRp3425 (dp3426 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp3427 (dp3428 g18 g3 (g19 g5 (ltRp3429 (dp3430 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3431 (dp3432 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3433 (dp3434 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3435 (dp3436 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name3-Value3' p3437 sg22 I00 sg37 g3385 sg39 g3437 sbag3 (g7 g8 NtRp3438 (dp3439 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp3440 (dp3441 g18 g3 (g19 g5 (ltRp3442 (dp3443 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3444 (dp3445 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3446 (dp3447 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3448 (dp3449 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter3' p3450 sg22 I00 sg37 g38 sg39 g3450 sbag3 (g7 g8 NtRp3451 (dp3452 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp3453 (dp3454 g18 g3 (g19 g5 (ltRp3455 (dp3456 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3457 (dp3458 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3459 (dp3460 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3461 (dp3462 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name4-Value4' p3463 sg22 I00 sg37 g3385 sg39 g3463 sbag3 (g7 g8 NtRp3464 (dp3465 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp3466 (dp3467 g18 g3 (g19 g5 (ltRp3468 (dp3469 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3470 (dp3471 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3472 (dp3473 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3474 (dp3475 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter4' p3476 sg22 I00 sg37 g38 sg39 g3476 sbag3 (g7 g8 NtRp3477 (dp3478 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp3479 (dp3480 g18 g3 (g19 g5 (ltRp3481 (dp3482 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3483 (dp3484 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3485 (dp3486 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3487 (dp3488 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name5-Value5' p3489 sg22 I00 sg37 g3385 sg39 g3489 sbag3 (g7 g8 NtRp3490 (dp3491 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp3492 (dp3493 g18 g3 (g19 g5 (ltRp3494 (dp3495 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3496 (dp3497 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3498 (dp3499 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3500 (dp3501 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter5' p3502 sg22 I00 sg37 g38 sg39 g3502 sbag3 (g7 g8 NtRp3503 (dp3504 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp3505 (dp3506 g18 g3 (g19 g5 (ltRp3507 (dp3508 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3509 (dp3510 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3511 (dp3512 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3513 (dp3514 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name6-Value6' p3515 sg22 I00 sg37 g3385 sg39 g3515 sbag3 (g7 g8 NtRp3516 (dp3517 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp3518 (dp3519 g18 g3 (g19 g5 (ltRp3520 (dp3521 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3522 (dp3523 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3524 (dp3525 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3526 (dp3527 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter6' p3528 sg22 I00 sg37 g38 sg39 g3528 sbag3 (g7 g8 NtRp3529 (dp3530 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp3531 (dp3532 g18 g3 (g19 g5 (ltRp3533 (dp3534 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3535 (dp3536 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3537 (dp3538 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3539 (dp3540 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name7-Value7' p3541 sg22 I00 sg37 g3385 sg39 g3541 sbag3 (g7 g8 NtRp3542 (dp3543 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp3544 (dp3545 g18 g3 (g19 g5 (ltRp3546 (dp3547 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3548 (dp3549 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3550 (dp3551 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3552 (dp3553 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter7' p3554 sg22 I00 sg37 g38 sg39 g3554 sbag3 (g7 g8 NtRp3555 (dp3556 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp3557 (dp3558 g18 g3 (g19 g5 (ltRp3559 (dp3560 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3561 (dp3562 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3563 (dp3564 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3565 (dp3566 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name8-Value8' p3567 sg22 I00 sg37 g3385 sg39 g3567 sbag3 (g7 g8 NtRp3568 (dp3569 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp3570 (dp3571 g18 g3 (g19 g5 (ltRp3572 (dp3573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3574 (dp3575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3576 (dp3577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3578 (dp3579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter8' p3580 sg22 I00 sg37 g38 sg39 g3580 sbag3 (g7 g8 NtRp3581 (dp3582 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp3583 (dp3584 g18 g3 (g19 g5 (ltRp3585 (dp3586 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3587 (dp3588 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3589 (dp3590 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3591 (dp3592 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name9-Value9' p3593 sg22 I00 sg37 g3385 sg39 g3593 sbag3 (g7 g8 NtRp3594 (dp3595 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp3596 (dp3597 g18 g3 (g19 g5 (ltRp3598 (dp3599 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3600 (dp3601 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3602 (dp3603 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3604 (dp3605 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter9' p3606 sg22 I00 sg37 g38 sg39 g3606 sbag3 (g7 g8 NtRp3607 (dp3608 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp3609 (dp3610 g18 g3 (g19 g5 (ltRp3611 (dp3612 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3613 (dp3614 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3615 (dp3616 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3617 (dp3618 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name10-Value10' p3619 sg22 I00 sg37 g3385 sg39 g3619 sbag3 (g7 g8 NtRp3620 (dp3621 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp3622 (dp3623 g18 g3 (g19 g5 (ltRp3624 (dp3625 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3626 (dp3627 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3628 (dp3629 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3630 (dp3631 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter10' p3632 sg22 I00 sg37 g38 sg39 g3632 sbag3 (g7 g8 NtRp3633 (dp3634 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp3635 (dp3636 g18 g3 (g19 g5 (ltRp3637 (dp3638 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3639 (dp3640 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3641 (dp3642 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3643 (dp3644 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Received' p3645 sg22 I00 sg37 g38 sg39 g3645 sbag3 (g7 g8 NtRp3646 (dp3647 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp3648 (dp3649 g18 g3 (g19 g5 (ltRp3650 (dp3651 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3652 (dp3653 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3654 (dp3655 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3656 (dp3657 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Successful' p3658 sg22 I00 sg37 g38 sg39 g3658 sbag3 (g7 g8 NtRp3659 (dp3660 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp3661 (dp3662 g18 g3 (g19 g5 (ltRp3663 (dp3664 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3665 (dp3666 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3667 (dp3668 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3669 (dp3670 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Failed' p3671 sg22 I00 sg37 g38 sg39 g3671 sbag3 (g7 g8 NtRp3672 (dp3673 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp3674 (dp3675 g18 g3 (g19 g5 (ltRp3676 (dp3677 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3678 (dp3679 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3680 (dp3681 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3682 (dp3683 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Received' p3684 sg22 I00 sg37 g38 sg39 g3684 sbag3 (g7 g8 NtRp3685 (dp3686 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp3687 (dp3688 g18 g3 (g19 g5 (ltRp3689 (dp3690 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3691 (dp3692 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3693 (dp3694 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3695 (dp3696 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Successful' p3697 sg22 I00 sg37 g38 sg39 g3697 sbag3 (g7 g8 NtRp3698 (dp3699 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp3700 (dp3701 g18 g3 (g19 g5 (ltRp3702 (dp3703 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3704 (dp3705 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3706 (dp3707 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3708 (dp3709 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Failed' p3710 sg22 I00 sg37 g38 sg39 g3710 sbag3 (g7 g8 NtRp3711 (dp3712 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp3713 (dp3714 g18 g3 (g19 g5 (ltRp3715 (dp3716 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3717 (dp3718 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3719 (dp3720 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3721 (dp3722 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Received' p3723 sg22 I00 sg37 g38 sg39 g3723 sbag3 (g7 g8 NtRp3724 (dp3725 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp3726 (dp3727 g18 g3 (g19 g5 (ltRp3728 (dp3729 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3730 (dp3731 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3732 (dp3733 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3734 (dp3735 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Successful' p3736 sg22 I00 sg37 g38 sg39 g3736 sbag3 (g7 g8 NtRp3737 (dp3738 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp3739 (dp3740 g18 g3 (g19 g5 (ltRp3741 (dp3742 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3743 (dp3744 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3745 (dp3746 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3747 (dp3748 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Failed' p3749 sg22 I00 sg37 g38 sg39 g3749 sbag3 (g7 g8 NtRp3750 (dp3751 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp3752 (dp3753 g18 g3 (g19 g5 (ltRp3754 (dp3755 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3756 (dp3757 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3758 (dp3759 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3760 (dp3761 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Received' p3762 sg22 I00 sg37 g38 sg39 g3762 sbag3 (g7 g8 NtRp3763 (dp3764 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp3765 (dp3766 g18 g3 (g19 g5 (ltRp3767 (dp3768 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3769 (dp3770 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3771 (dp3772 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3773 (dp3774 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Successful' p3775 sg22 I00 sg37 g38 sg39 g3775 sbag3 (g7 g8 NtRp3776 (dp3777 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp3778 (dp3779 g18 g3 (g19 g5 (ltRp3780 (dp3781 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3782 (dp3783 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3784 (dp3785 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3786 (dp3787 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Failed' p3788 sg22 I00 sg37 g38 sg39 g3788 sbag3 (g7 g8 NtRp3789 (dp3790 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp3791 (dp3792 g18 g3 (g19 g5 (ltRp3793 (dp3794 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3795 (dp3796 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3797 (dp3798 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3799 (dp3800 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Average Compression Ratio' p3801 sg22 I00 sg37 g261 sg39 g3801 sbatRp3802 (dp3803 g12 I76 sg22 I00 sg11 NsbsS'HTTP Client' p3804 g3 (g4 g5 (lp3805 g3 (g7 g8 NtRp3806 (dp3807 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp3808 (dp3809 g18 g3 (g19 g5 (ltRp3810 (dp3811 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3812 (dp3813 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3814 (dp3815 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3816 (dp3817 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Simulated Users' p3818 sg22 I00 sg37 g38 sg39 g3818 sbag3 (g7 g8 NtRp3819 (dp3820 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp3821 (dp3822 g18 g3 (g19 g5 (ltRp3823 (dp3824 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3825 (dp3826 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3827 (dp3828 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3829 (dp3830 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Concurrent Connections' p3831 sg22 I00 sg37 g38 sg39 g3831 sbag3 (g7 g8 NtRp3832 (dp3833 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp3834 (dp3835 g18 g3 (g19 g5 (ltRp3836 (dp3837 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3838 (dp3839 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3840 (dp3841 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3842 (dp3843 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connections' p3844 sg22 I00 sg37 g38 sg39 g3844 sbag3 (g7 g8 NtRp3845 (dp3846 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp3847 (dp3848 g18 g3 (g19 g5 (ltRp3849 (dp3850 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3851 (dp3852 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3853 (dp3854 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3855 (dp3856 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Attempts' p3857 sg22 I00 sg37 g38 sg39 g3857 sbag3 (g7 g8 NtRp3858 (dp3859 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp3860 (dp3861 g18 g3 (g19 g5 (ltRp3862 (dp3863 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3864 (dp3865 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3866 (dp3867 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3868 (dp3869 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Aborts' p3870 sg22 I00 sg37 g38 sg39 g3870 sbag3 (g7 g8 NtRp3871 (dp3872 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp3873 (dp3874 g18 g3 (g19 g5 (ltRp3875 (dp3876 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3877 (dp3878 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3879 (dp3880 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3881 (dp3882 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Aborts' p3883 sg22 I00 sg37 g38 sg39 g3883 sbag3 (g7 g8 NtRp3884 (dp3885 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp3886 (dp3887 g18 g3 (g19 g5 (ltRp3888 (dp3889 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3890 (dp3891 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3892 (dp3893 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3894 (dp3895 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions' p3896 sg22 I00 sg37 g38 sg39 g3896 sbag3 (g7 g8 NtRp3897 (dp3898 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp3899 (dp3900 g18 g3 (g19 g5 (ltRp3901 (dp3902 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3903 (dp3904 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3905 (dp3906 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3907 (dp3908 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes' p3909 sg22 I00 sg37 g38 sg39 g3909 sbag3 (g7 g8 NtRp3910 (dp3911 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp3912 (dp3913 g18 g3 (g19 g5 (ltRp3914 (dp3915 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3916 (dp3917 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3918 (dp3919 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3920 (dp3921 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp3922 (dp3923 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp3924 (dp3925 g18 g3 (g19 g5 (ltRp3926 (dp3927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3928 (dp3929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3930 (dp3931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3932 (dp3933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp3934 (dp3935 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp3936 (dp3937 g18 g3 (g19 g5 (ltRp3938 (dp3939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3940 (dp3941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3942 (dp3943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3944 (dp3945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp3946 (dp3947 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp3948 (dp3949 g18 g3 (g19 g5 (ltRp3950 (dp3951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3952 (dp3953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3954 (dp3955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3956 (dp3957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3958 (dp3959 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp3960 (dp3961 g18 g3 (g19 g5 (ltRp3962 (dp3963 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3964 (dp3965 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3966 (dp3967 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3968 (dp3969 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3970 (dp3971 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp3972 (dp3973 g18 g3 (g19 g5 (ltRp3974 (dp3975 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3976 (dp3977 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3978 (dp3979 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3980 (dp3981 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3982 (dp3983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp3984 (dp3985 g18 g3 (g19 g5 (ltRp3986 (dp3987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3988 (dp3989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3990 (dp3991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3992 (dp3993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3994 (dp3995 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp3996 (dp3997 g18 g3 (g19 g5 (ltRp3998 (dp3999 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4000 (dp4001 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4002 (dp4003 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4004 (dp4005 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp4006 (dp4007 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp4008 (dp4009 g18 g3 (g19 g5 (ltRp4010 (dp4011 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4012 (dp4013 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4014 (dp4015 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4016 (dp4017 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp4018 (dp4019 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp4020 (dp4021 g18 g3 (g19 g5 (ltRp4022 (dp4023 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4024 (dp4025 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4026 (dp4027 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4028 (dp4029 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp4030 (dp4031 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp4032 (dp4033 g18 g3 (g19 g5 (ltRp4034 (dp4035 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4036 (dp4037 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4038 (dp4039 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4040 (dp4041 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp4042 (dp4043 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp4044 (dp4045 g18 g3 (g19 g5 (ltRp4046 (dp4047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4048 (dp4049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4050 (dp4051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4052 (dp4053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp4054 (dp4055 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp4056 (dp4057 g18 g3 (g19 g5 (ltRp4058 (dp4059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4060 (dp4061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4062 (dp4063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4064 (dp4065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp4066 (dp4067 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp4068 (dp4069 g18 g3 (g19 g5 (ltRp4070 (dp4071 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4072 (dp4073 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4074 (dp4075 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4076 (dp4077 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp4078 (dp4079 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp4080 (dp4081 g18 g3 (g19 g5 (ltRp4082 (dp4083 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4084 (dp4085 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4086 (dp4087 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4088 (dp4089 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp4090 (dp4091 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp4092 (dp4093 g18 g3 (g19 g5 (ltRp4094 (dp4095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4096 (dp4097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4098 (dp4099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4100 (dp4101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp4102 (dp4103 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp4104 (dp4105 g18 g3 (g19 g5 (ltRp4106 (dp4107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4108 (dp4109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4110 (dp4111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4112 (dp4113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp4114 (dp4115 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp4116 (dp4117 g18 g3 (g19 g5 (ltRp4118 (dp4119 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4120 (dp4121 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4122 (dp4123 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4124 (dp4125 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp4126 (dp4127 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp4128 (dp4129 g18 g3 (g19 g5 (ltRp4130 (dp4131 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4132 (dp4133 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4134 (dp4135 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4136 (dp4137 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp4138 (dp4139 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp4140 (dp4141 g18 g3 (g19 g5 (ltRp4142 (dp4143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4144 (dp4145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4146 (dp4147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4148 (dp4149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp4150 (dp4151 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp4152 (dp4153 g18 g3 (g19 g5 (ltRp4154 (dp4155 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4156 (dp4157 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4158 (dp4159 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4160 (dp4161 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp4162 (dp4163 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp4164 (dp4165 g18 g3 (g19 g5 (ltRp4166 (dp4167 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4168 (dp4169 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4170 (dp4171 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4172 (dp4173 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp4174 (dp4175 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp4176 (dp4177 g18 g3 (g19 g5 (ltRp4178 (dp4179 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4180 (dp4181 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4182 (dp4183 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4184 (dp4185 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp4186 (dp4187 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp4188 (dp4189 g18 g3 (g19 g5 (ltRp4190 (dp4191 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4192 (dp4193 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4194 (dp4195 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4196 (dp4197 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp4198 (dp4199 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp4200 (dp4201 g18 g3 (g19 g5 (ltRp4202 (dp4203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4204 (dp4205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4206 (dp4207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4208 (dp4209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp4210 (dp4211 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp4212 (dp4213 g18 g3 (g19 g5 (ltRp4214 (dp4215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4216 (dp4217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4218 (dp4219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4220 (dp4221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp4222 (dp4223 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp4224 (dp4225 g18 g3 (g19 g5 (ltRp4226 (dp4227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4228 (dp4229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4230 (dp4231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4232 (dp4233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp4234 (dp4235 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp4236 (dp4237 g18 g3 (g19 g5 (ltRp4238 (dp4239 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4240 (dp4241 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4242 (dp4243 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4244 (dp4245 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp4246 (dp4247 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp4248 (dp4249 g18 g3 (g19 g5 (ltRp4250 (dp4251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4252 (dp4253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4254 (dp4255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4256 (dp4257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p4258 sg22 I00 sg37 g38 sg39 g4258 sbag3 (g7 g8 NtRp4259 (dp4260 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp4261 (dp4262 g18 g3 (g19 g5 (ltRp4263 (dp4264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4265 (dp4266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4267 (dp4268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4269 (dp4270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Request Precondition Failed (412)' p4271 sg22 I00 sg37 g38 sg39 g4271 sbag3 (g7 g8 NtRp4272 (dp4273 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp4274 (dp4275 g18 g3 (g19 g5 (ltRp4276 (dp4277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4278 (dp4279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4280 (dp4281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4282 (dp4283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p4284 sg22 I00 sg37 g38 sg39 g4284 sbag3 (g7 g8 NtRp4285 (dp4286 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp4287 (dp4288 g18 g3 (g19 g5 (ltRp4289 (dp4290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4291 (dp4292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4293 (dp4294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4295 (dp4296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp4297 (dp4298 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp4299 (dp4300 g18 g3 (g19 g5 (ltRp4301 (dp4302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4303 (dp4304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4305 (dp4306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4307 (dp4308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp4309 (dp4310 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp4311 (dp4312 g18 g3 (g19 g5 (ltRp4313 (dp4314 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4315 (dp4316 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4317 (dp4318 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4319 (dp4320 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions Active' p4321 sg22 I00 sg37 g38 sg39 g4321 sbag3 (g7 g8 NtRp4322 (dp4323 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp4324 (dp4325 g18 g3 (g19 g5 (ltRp4326 (dp4327 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4328 (dp4329 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4330 (dp4331 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4332 (dp4333 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Users Active' p4334 sg22 I00 sg37 g38 sg39 g4334 sbag3 (g7 g8 NtRp4335 (dp4336 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp4337 (dp4338 g18 g3 (g19 g5 (ltRp4339 (dp4340 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4341 (dp4342 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4343 (dp4344 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4345 (dp4346 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Received' p4347 sg22 I00 sg37 g38 sg39 g4347 sbag3 (g7 g8 NtRp4348 (dp4349 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp4350 (dp4351 g18 g3 (g19 g5 (ltRp4352 (dp4353 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4354 (dp4355 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4356 (dp4357 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4358 (dp4359 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Received' p4360 sg22 I00 sg37 g38 sg39 g4360 sbag3 (g7 g8 NtRp4361 (dp4362 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp4363 (dp4364 g18 g3 (g19 g5 (ltRp4365 (dp4366 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4367 (dp4368 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4369 (dp4370 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4371 (dp4372 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Received' p4373 sg22 I00 sg37 g38 sg39 g4373 sbag3 (g7 g8 NtRp4374 (dp4375 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp4376 (dp4377 g18 g3 (g19 g5 (ltRp4378 (dp4379 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4380 (dp4381 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4382 (dp4383 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4384 (dp4385 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Unrecognized Content-Encoding Received' p4386 sg22 I00 sg37 g38 sg39 g4386 sbag3 (g7 g8 NtRp4387 (dp4388 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp4389 (dp4390 g18 g3 (g19 g5 (ltRp4391 (dp4392 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4393 (dp4394 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4395 (dp4396 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4397 (dp4398 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Successful' p4399 sg22 I00 sg37 g38 sg39 g4399 sbag3 (g7 g8 NtRp4400 (dp4401 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp4402 (dp4403 g18 g3 (g19 g5 (ltRp4404 (dp4405 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4406 (dp4407 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4408 (dp4409 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4410 (dp4411 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Successful' p4412 sg22 I00 sg37 g38 sg39 g4412 sbag3 (g7 g8 NtRp4413 (dp4414 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp4415 (dp4416 g18 g3 (g19 g5 (ltRp4417 (dp4418 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4419 (dp4420 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4421 (dp4422 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4423 (dp4424 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Successful' p4425 sg22 I00 sg37 g38 sg39 g4425 sbag3 (g7 g8 NtRp4426 (dp4427 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp4428 (dp4429 g18 g3 (g19 g5 (ltRp4430 (dp4431 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4432 (dp4433 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4434 (dp4435 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4436 (dp4437 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Failed' p4438 sg22 I00 sg37 g38 sg39 g4438 sbag3 (g7 g8 NtRp4439 (dp4440 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp4441 (dp4442 g18 g3 (g19 g5 (ltRp4443 (dp4444 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4445 (dp4446 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4447 (dp4448 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4449 (dp4450 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed' p4451 sg22 I00 sg37 g38 sg39 g4451 sbag3 (g7 g8 NtRp4452 (dp4453 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp4454 (dp4455 g18 g3 (g19 g5 (ltRp4456 (dp4457 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4458 (dp4459 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4460 (dp4461 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4462 (dp4463 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed' p4464 sg22 I00 sg37 g38 sg39 g4464 sbag3 (g7 g8 NtRp4465 (dp4466 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp4467 (dp4468 g18 g3 (g19 g5 (ltRp4469 (dp4470 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4471 (dp4472 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4473 (dp4474 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4475 (dp4476 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Data Error' p4477 sg22 I00 sg37 g38 sg39 g4477 sbag3 (g7 g8 NtRp4478 (dp4479 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp4480 (dp4481 g18 g3 (g19 g5 (ltRp4482 (dp4483 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4484 (dp4485 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4486 (dp4487 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4488 (dp4489 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Decoding Error' p4490 sg22 I00 sg37 g38 sg39 g4490 sbag3 (g7 g8 NtRp4491 (dp4492 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp4493 (dp4494 g18 g3 (g19 g5 (ltRp4495 (dp4496 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4497 (dp4498 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4499 (dp4500 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4501 (dp4502 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Data Error' p4503 sg22 I00 sg37 g38 sg39 g4503 sbag3 (g7 g8 NtRp4504 (dp4505 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp4506 (dp4507 g18 g3 (g19 g5 (ltRp4508 (dp4509 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4510 (dp4511 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4512 (dp4513 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4514 (dp4515 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Decoding Error' p4516 sg22 I00 sg37 g38 sg39 g4516 sbag3 (g7 g8 NtRp4517 (dp4518 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp4519 (dp4520 g18 g3 (g19 g5 (ltRp4521 (dp4522 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4523 (dp4524 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4525 (dp4526 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4527 (dp4528 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Headers Received' p4529 sg22 I00 sg37 g38 sg39 g4529 sbag3 (g7 g8 NtRp4530 (dp4531 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp4532 (dp4533 g18 g3 (g19 g5 (ltRp4534 (dp4535 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4536 (dp4537 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4538 (dp4539 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4540 (dp4541 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Responses Received' p4542 sg22 I00 sg37 g38 sg39 g4542 sbag3 (g7 g8 NtRp4543 (dp4544 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp4545 (dp4546 g18 g3 (g19 g5 (ltRp4547 (dp4548 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4549 (dp4550 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4551 (dp4552 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4553 (dp4554 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Successful' p4555 sg22 I00 sg37 g38 sg39 g4555 sbag3 (g7 g8 NtRp4556 (dp4557 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp4558 (dp4559 g18 g3 (g19 g5 (ltRp4560 (dp4561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4562 (dp4563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4564 (dp4565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4566 (dp4567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Failed' p4568 sg22 I00 sg37 g38 sg39 g4568 sbag3 (g7 g8 NtRp4569 (dp4570 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp4571 (dp4572 g18 g3 (g19 g5 (ltRp4573 (dp4574 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4575 (dp4576 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4577 (dp4578 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4579 (dp4580 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Received' p4581 sg22 I00 sg37 g38 sg39 g4581 sbag3 (g7 g8 NtRp4582 (dp4583 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp4584 (dp4585 g18 g3 (g19 g5 (ltRp4586 (dp4587 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4588 (dp4589 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4590 (dp4591 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4592 (dp4593 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Headers Sent' p4594 sg22 I00 sg37 g38 sg39 g4594 sbag3 (g7 g8 NtRp4595 (dp4596 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp4597 (dp4598 g18 g3 (g19 g5 (ltRp4599 (dp4600 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4601 (dp4602 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4603 (dp4604 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4605 (dp4606 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Sent' p4607 sg22 I00 sg37 g38 sg39 g4607 sbag3 (g7 g8 NtRp4608 (dp4609 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp4610 (dp4611 g18 g3 (g19 g5 (ltRp4612 (dp4613 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4614 (dp4615 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4616 (dp4617 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4618 (dp4619 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Responses Received' p4620 sg22 I00 sg37 g38 sg39 g4620 sbag3 (g7 g8 NtRp4621 (dp4622 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp4623 (dp4624 g18 g3 (g19 g5 (ltRp4625 (dp4626 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4627 (dp4628 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4629 (dp4630 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4631 (dp4632 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Successful' p4633 sg22 I00 sg37 g38 sg39 g4633 sbag3 (g7 g8 NtRp4634 (dp4635 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp4636 (dp4637 g18 g3 (g19 g5 (ltRp4638 (dp4639 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4640 (dp4641 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4642 (dp4643 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4644 (dp4645 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Failed' p4646 sg22 I00 sg37 g38 sg39 g4646 sbag3 (g7 g8 NtRp4647 (dp4648 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp4649 (dp4650 g18 g3 (g19 g5 (ltRp4651 (dp4652 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4653 (dp4654 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4655 (dp4656 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4657 (dp4658 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Responses Received' p4659 sg22 I00 sg37 g38 sg39 g4659 sbag3 (g7 g8 NtRp4660 (dp4661 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp4662 (dp4663 g18 g3 (g19 g5 (ltRp4664 (dp4665 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4666 (dp4667 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4668 (dp4669 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4670 (dp4671 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Successful' p4672 sg22 I00 sg37 g38 sg39 g4672 sbag3 (g7 g8 NtRp4673 (dp4674 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp4675 (dp4676 g18 g3 (g19 g5 (ltRp4677 (dp4678 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4679 (dp4680 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4681 (dp4682 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4683 (dp4684 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Failed' p4685 sg22 I00 sg37 g38 sg39 g4685 sbag3 (g7 g8 NtRp4686 (dp4687 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp4688 (dp4689 g18 g3 (g19 g5 (ltRp4690 (dp4691 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4692 (dp4693 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4694 (dp4695 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4696 (dp4697 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p4698 sg22 I00 sg37 g38 sg39 g4698 sbag3 (g7 g8 NtRp4699 (dp4700 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp4701 (dp4702 g18 g3 (g19 g5 (ltRp4703 (dp4704 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4705 (dp4706 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4707 (dp4708 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4709 (dp4710 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p4711 sg22 I00 sg37 g38 sg39 g4711 sbag3 (g7 g8 NtRp4712 (dp4713 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp4714 (dp4715 g18 g3 (g19 g5 (ltRp4716 (dp4717 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4718 (dp4719 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4720 (dp4721 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4722 (dp4723 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p4724 sg22 I00 sg37 g38 sg39 g4724 sbag3 (g7 g8 NtRp4725 (dp4726 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp4727 (dp4728 g18 g3 (g19 g5 (ltRp4729 (dp4730 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4731 (dp4732 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4733 (dp4734 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4735 (dp4736 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p4737 sg22 I00 sg37 g38 sg39 g4737 sbag3 (g7 g8 NtRp4738 (dp4739 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp4740 (dp4741 g18 g3 (g19 g5 (ltRp4742 (dp4743 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4744 (dp4745 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4746 (dp4747 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4748 (dp4749 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Decompressed Content Bytes Received' p4750 sg22 I00 sg37 g38 sg39 g4750 sbag3 (g7 g8 NtRp4751 (dp4752 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp4753 (dp4754 g18 g3 (g19 g5 (ltRp4755 (dp4756 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4757 (dp4758 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4759 (dp4760 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4761 (dp4762 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p4763 sg22 I00 sg37 g38 sg39 g4763 sbag3 (g7 g8 NtRp4764 (dp4765 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp4766 (dp4767 g18 g3 (g19 g5 (ltRp4768 (dp4769 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4770 (dp4771 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4772 (dp4773 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4774 (dp4775 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p4776 sg22 I00 sg37 g38 sg39 g4776 sbag3 (g7 g8 NtRp4777 (dp4778 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp4779 (dp4780 g18 g3 (g19 g5 (ltRp4781 (dp4782 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4783 (dp4784 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4785 (dp4786 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4787 (dp4788 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected' p4789 sg22 I00 sg37 g38 sg39 g4789 sbag3 (g7 g8 NtRp4790 (dp4791 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp4792 (dp4793 g18 g3 (g19 g5 (ltRp4794 (dp4795 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4796 (dp4797 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4798 (dp4799 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4800 (dp4801 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Path Match Failed)' p4802 sg22 I00 sg37 g38 sg39 g4802 sbag3 (g7 g8 NtRp4803 (dp4804 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp4805 (dp4806 g18 g3 (g19 g5 (ltRp4807 (dp4808 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4809 (dp4810 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4811 (dp4812 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4813 (dp4814 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Domain Match Failed)' p4815 sg22 I00 sg37 g38 sg39 g4815 sbag3 (g7 g8 NtRp4816 (dp4817 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp4818 (dp4819 g18 g3 (g19 g5 (ltRp4820 (dp4821 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4822 (dp4823 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4824 (dp4825 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4826 (dp4827 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Cookiejar Overflow)' p4828 sg22 I00 sg37 g38 sg39 g4828 sbag3 (g7 g8 NtRp4829 (dp4830 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp4831 (dp4832 g18 g3 (g19 g5 (ltRp4833 (dp4834 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4835 (dp4836 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4837 (dp4838 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4839 (dp4840 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Probabilistic Reject)' p4841 sg22 I00 sg37 g38 sg39 g4841 sbag3 (g7 g8 NtRp4842 (dp4843 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp4844 (dp4845 g18 g3 (g19 g5 (ltRp4846 (dp4847 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4848 (dp4849 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4850 (dp4851 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4852 (dp4853 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookie headers Rejected - (Memory Overflow)' p4854 sg22 I00 sg37 g38 sg39 g4854 sbag3 (g7 g8 NtRp4855 (dp4856 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp4857 (dp4858 g18 g3 (g19 g5 (ltRp4859 (dp4860 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4861 (dp4862 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4863 (dp4864 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4865 (dp4866 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connect Time (us)' p4867 sg22 I00 sg37 g261 sg39 g4867 sbag3 (g7 g8 NtRp4868 (dp4869 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp4870 (dp4871 g18 g3 (g19 g5 (ltRp4872 (dp4873 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4874 (dp4875 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4876 (dp4877 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4878 (dp4879 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To First Byte (us)' p4880 sg22 I00 sg37 g261 sg39 g4880 sbag3 (g7 g8 NtRp4881 (dp4882 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp4883 (dp4884 g18 g3 (g19 g5 (ltRp4885 (dp4886 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4887 (dp4888 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4889 (dp4890 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4891 (dp4892 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To Last Byte (us)' p4893 sg22 I00 sg37 g261 sg39 g4893 sbag3 (g7 g8 NtRp4894 (dp4895 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp4896 (dp4897 g18 g3 (g19 g5 (ltRp4898 (dp4899 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4900 (dp4901 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4902 (dp4903 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4904 (dp4905 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Average (us)' p4906 sg22 I00 sg37 g261 sg39 g4906 sbag3 (g7 g8 NtRp4907 (dp4908 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp4909 (dp4910 g18 g3 (g19 g5 (ltRp4911 (dp4912 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4913 (dp4914 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4915 (dp4916 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4917 (dp4918 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Minimum (us)' p4919 sg22 I00 sg37 g38 sg39 g4919 sbag3 (g7 g8 NtRp4920 (dp4921 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp4922 (dp4923 g18 g3 (g19 g5 (ltRp4924 (dp4925 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4926 (dp4927 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4928 (dp4929 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4930 (dp4931 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Maximum (us)' p4932 sg22 I00 sg37 g38 sg39 g4932 sbag3 (g7 g8 NtRp4933 (dp4934 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp4935 (dp4936 g18 g3 (g19 g5 (ltRp4937 (dp4938 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4939 (dp4940 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4941 (dp4942 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4943 (dp4944 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Failed' p4945 sg22 I00 sg37 g38 sg39 g4945 sbag3 (g7 g8 NtRp4946 (dp4947 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp4948 (dp4949 g18 g3 (g19 g5 (ltRp4950 (dp4951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4952 (dp4953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4954 (dp4955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4956 (dp4957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Succeeded' p4958 sg22 I00 sg37 g38 sg39 g4958 sbag3 (g7 g8 NtRp4959 (dp4960 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp4961 (dp4962 g18 g3 (g19 g5 (ltRp4963 (dp4964 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4965 (dp4966 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4967 (dp4968 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4969 (dp4970 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Received' p4971 sg22 I00 sg37 g38 sg39 g4971 sbag3 (g7 g8 NtRp4972 (dp4973 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp4974 (dp4975 g18 g3 (g19 g5 (ltRp4976 (dp4977 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4978 (dp4979 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4980 (dp4981 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4982 (dp4983 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Received' p4984 sg22 I00 sg37 g38 sg39 g4984 sbag3 (g7 g8 NtRp4985 (dp4986 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp4987 (dp4988 g18 g3 (g19 g5 (ltRp4989 (dp4990 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4991 (dp4992 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4993 (dp4994 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4995 (dp4996 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Received' p4997 sg22 I00 sg37 g38 sg39 g4997 sbag3 (g7 g8 NtRp4998 (dp4999 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp5000 (dp5001 g18 g3 (g19 g5 (ltRp5002 (dp5003 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5004 (dp5005 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5006 (dp5007 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5008 (dp5009 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Received' p5010 sg22 I00 sg37 g38 sg39 g5010 sbag3 (g7 g8 NtRp5011 (dp5012 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp5013 (dp5014 g18 g3 (g19 g5 (ltRp5015 (dp5016 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5017 (dp5018 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5019 (dp5020 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5021 (dp5022 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Received' p5023 sg22 I00 sg37 g38 sg39 g5023 sbag3 (g7 g8 NtRp5024 (dp5025 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp5026 (dp5027 g18 g3 (g19 g5 (ltRp5028 (dp5029 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5030 (dp5031 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5032 (dp5033 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5034 (dp5035 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Received' p5036 sg22 I00 sg37 g38 sg39 g5036 sbag3 (g7 g8 NtRp5037 (dp5038 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp5039 (dp5040 g18 g3 (g19 g5 (ltRp5041 (dp5042 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5043 (dp5044 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5045 (dp5046 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5047 (dp5048 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Received' p5049 sg22 I00 sg37 g38 sg39 g5049 sbag3 (g7 g8 NtRp5050 (dp5051 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp5052 (dp5053 g18 g3 (g19 g5 (ltRp5054 (dp5055 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5056 (dp5057 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5058 (dp5059 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5060 (dp5061 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Received' p5062 sg22 I00 sg37 g38 sg39 g5062 sbag3 (g7 g8 NtRp5063 (dp5064 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp5065 (dp5066 g18 g3 (g19 g5 (ltRp5067 (dp5068 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5069 (dp5070 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5071 (dp5072 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5073 (dp5074 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Received' p5075 sg22 I00 sg37 g38 sg39 g5075 sbag3 (g7 g8 NtRp5076 (dp5077 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp5078 (dp5079 g18 g3 (g19 g5 (ltRp5080 (dp5081 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5082 (dp5083 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5084 (dp5085 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5086 (dp5087 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Received' p5088 sg22 I00 sg37 g38 sg39 g5088 sbag3 (g7 g8 NtRp5089 (dp5090 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp5091 (dp5092 g18 g3 (g19 g5 (ltRp5093 (dp5094 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5095 (dp5096 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5097 (dp5098 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5099 (dp5100 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Sent' p5101 sg22 I00 sg37 g38 sg39 g5101 sbag3 (g7 g8 NtRp5102 (dp5103 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp5104 (dp5105 g18 g3 (g19 g5 (ltRp5106 (dp5107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5108 (dp5109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5110 (dp5111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5112 (dp5113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Sent' p5114 sg22 I00 sg37 g38 sg39 g5114 sbag3 (g7 g8 NtRp5115 (dp5116 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp5117 (dp5118 g18 g3 (g19 g5 (ltRp5119 (dp5120 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5121 (dp5122 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5123 (dp5124 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5125 (dp5126 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Sent' p5127 sg22 I00 sg37 g38 sg39 g5127 sbag3 (g7 g8 NtRp5128 (dp5129 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp5130 (dp5131 g18 g3 (g19 g5 (ltRp5132 (dp5133 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5134 (dp5135 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5136 (dp5137 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5138 (dp5139 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Sent' p5140 sg22 I00 sg37 g38 sg39 g5140 sbag3 (g7 g8 NtRp5141 (dp5142 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp5143 (dp5144 g18 g3 (g19 g5 (ltRp5145 (dp5146 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5147 (dp5148 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5149 (dp5150 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5151 (dp5152 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Sent' p5153 sg22 I00 sg37 g38 sg39 g5153 sbag3 (g7 g8 NtRp5154 (dp5155 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp5156 (dp5157 g18 g3 (g19 g5 (ltRp5158 (dp5159 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5160 (dp5161 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5162 (dp5163 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5164 (dp5165 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Sent' p5166 sg22 I00 sg37 g38 sg39 g5166 sbag3 (g7 g8 NtRp5167 (dp5168 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp5169 (dp5170 g18 g3 (g19 g5 (ltRp5171 (dp5172 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5173 (dp5174 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5175 (dp5176 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5177 (dp5178 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Sent' p5179 sg22 I00 sg37 g38 sg39 g5179 sbag3 (g7 g8 NtRp5180 (dp5181 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp5182 (dp5183 g18 g3 (g19 g5 (ltRp5184 (dp5185 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5186 (dp5187 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5188 (dp5189 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5190 (dp5191 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Sent' p5192 sg22 I00 sg37 g38 sg39 g5192 sbag3 (g7 g8 NtRp5193 (dp5194 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp5195 (dp5196 g18 g3 (g19 g5 (ltRp5197 (dp5198 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5199 (dp5200 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5201 (dp5202 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5203 (dp5204 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Sent' p5205 sg22 I00 sg37 g38 sg39 g5205 sbag3 (g7 g8 NtRp5206 (dp5207 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp5208 (dp5209 g18 g3 (g19 g5 (ltRp5210 (dp5211 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5212 (dp5213 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5214 (dp5215 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5216 (dp5217 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Sent' p5218 sg22 I00 sg37 g38 sg39 g5218 sbag3 (g7 g8 NtRp5219 (dp5220 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp5221 (dp5222 g18 g3 (g19 g5 (ltRp5223 (dp5224 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5225 (dp5226 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5227 (dp5228 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5229 (dp5230 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Client' p5231 sg22 I00 sg37 g38 sg39 g5231 sbag3 (g7 g8 NtRp5232 (dp5233 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp5234 (dp5235 g18 g3 (g19 g5 (ltRp5236 (dp5237 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5238 (dp5239 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5240 (dp5241 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5242 (dp5243 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Server' p5244 sg22 I00 sg37 g38 sg39 g5244 sbag3 (g7 g8 NtRp5245 (dp5246 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp5247 (dp5248 g18 g3 (g19 g5 (ltRp5249 (dp5250 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5251 (dp5252 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5253 (dp5254 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5255 (dp5256 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Client to Server)' p5257 sg22 I00 sg37 g38 sg39 g5257 sbag3 (g7 g8 NtRp5258 (dp5259 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp5260 (dp5261 g18 g3 (g19 g5 (ltRp5262 (dp5263 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5264 (dp5265 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5266 (dp5267 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5268 (dp5269 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Server to Client)' p5270 sg22 I00 sg37 g38 sg39 g5270 sbag3 (g7 g8 NtRp5271 (dp5272 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp5273 (dp5274 g18 g3 (g19 g5 (ltRp5275 (dp5276 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5277 (dp5278 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5279 (dp5280 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5281 (dp5282 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Client to Server)' p5283 sg22 I00 sg37 g38 sg39 g5283 sbag3 (g7 g8 NtRp5284 (dp5285 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp5286 (dp5287 g18 g3 (g19 g5 (ltRp5288 (dp5289 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5290 (dp5291 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5292 (dp5293 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5294 (dp5295 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Server to Client)' p5296 sg22 I00 sg37 g38 sg39 g5296 sbag3 (g7 g8 NtRp5297 (dp5298 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp5299 (dp5300 g18 g3 (g19 g5 (ltRp5301 (dp5302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5303 (dp5304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5305 (dp5306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5307 (dp5308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Succeeded' p5309 sg22 I00 sg37 g38 sg39 g5309 sbag3 (g7 g8 NtRp5310 (dp5311 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp5312 (dp5313 g18 g3 (g19 g5 (ltRp5314 (dp5315 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5316 (dp5317 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5318 (dp5319 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5320 (dp5321 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Failed' p5322 sg22 I00 sg37 g38 sg39 g5322 sbag3 (g7 g8 NtRp5323 (dp5324 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp5325 (dp5326 g18 g3 (g19 g5 (ltRp5327 (dp5328 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5329 (dp5330 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5331 (dp5332 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5333 (dp5334 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Protocol Error' p5335 sg22 I00 sg37 g38 sg39 g5335 sbag3 (g7 g8 NtRp5336 (dp5337 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp5338 (dp5339 g18 g3 (g19 g5 (ltRp5340 (dp5341 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5342 (dp5343 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5344 (dp5345 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5346 (dp5347 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Internal Error' p5348 sg22 I00 sg37 g38 sg39 g5348 sbag3 (g7 g8 NtRp5349 (dp5350 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp5351 (dp5352 g18 g3 (g19 g5 (ltRp5353 (dp5354 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5355 (dp5356 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5357 (dp5358 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5359 (dp5360 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Flow Control Error' p5361 sg22 I00 sg37 g38 sg39 g5361 sbag3 (g7 g8 NtRp5362 (dp5363 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp5364 (dp5365 g18 g3 (g19 g5 (ltRp5366 (dp5367 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5368 (dp5369 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5370 (dp5371 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5372 (dp5373 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Timeout Error' p5374 sg22 I00 sg37 g38 sg39 g5374 sbag3 (g7 g8 NtRp5375 (dp5376 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp5377 (dp5378 g18 g3 (g19 g5 (ltRp5379 (dp5380 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5381 (dp5382 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5383 (dp5384 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5385 (dp5386 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Closed Error' p5387 sg22 I00 sg37 g38 sg39 g5387 sbag3 (g7 g8 NtRp5388 (dp5389 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp5390 (dp5391 g18 g3 (g19 g5 (ltRp5392 (dp5393 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5394 (dp5395 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5396 (dp5397 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5398 (dp5399 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Frame Size Error' p5400 sg22 I00 sg37 g38 sg39 g5400 sbag3 (g7 g8 NtRp5401 (dp5402 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp5403 (dp5404 g18 g3 (g19 g5 (ltRp5405 (dp5406 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5407 (dp5408 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5409 (dp5410 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5411 (dp5412 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Refused Stream Error' p5413 sg22 I00 sg37 g38 sg39 g5413 sbag3 (g7 g8 NtRp5414 (dp5415 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp5416 (dp5417 g18 g3 (g19 g5 (ltRp5418 (dp5419 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5420 (dp5421 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5422 (dp5423 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5424 (dp5425 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Cancelled Error' p5426 sg22 I00 sg37 g38 sg39 g5426 sbag3 (g7 g8 NtRp5427 (dp5428 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp5429 (dp5430 g18 g3 (g19 g5 (ltRp5431 (dp5432 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5433 (dp5434 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5435 (dp5436 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5437 (dp5438 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Compression Error' p5439 sg22 I00 sg37 g38 sg39 g5439 sbag3 (g7 g8 NtRp5440 (dp5441 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp5442 (dp5443 g18 g3 (g19 g5 (ltRp5444 (dp5445 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5446 (dp5447 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5448 (dp5449 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5450 (dp5451 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connect Error' p5452 sg22 I00 sg37 g38 sg39 g5452 sbag3 (g7 g8 NtRp5453 (dp5454 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp5455 (dp5456 g18 g3 (g19 g5 (ltRp5457 (dp5458 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5459 (dp5460 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5461 (dp5462 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5463 (dp5464 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Enhance Calm Error' p5465 sg22 I00 sg37 g38 sg39 g5465 sbag3 (g7 g8 NtRp5466 (dp5467 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp5468 (dp5469 g18 g3 (g19 g5 (ltRp5470 (dp5471 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5472 (dp5473 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5474 (dp5475 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5476 (dp5477 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Inadequate Security Error' p5478 sg22 I00 sg37 g38 sg39 g5478 sbag3 (g7 g8 NtRp5479 (dp5480 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp5481 (dp5482 g18 g3 (g19 g5 (ltRp5483 (dp5484 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5485 (dp5486 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5487 (dp5488 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5489 (dp5490 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 HTTP1_1 Required Error' p5491 sg22 I00 sg37 g38 sg39 g5491 sbag3 (g7 g8 NtRp5492 (dp5493 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp5494 (dp5495 g18 g3 (g19 g5 (ltRp5496 (dp5497 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5498 (dp5499 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5500 (dp5501 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5502 (dp5503 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p5504 sg22 I00 sg37 g38 sg39 g5504 sbag3 (g7 g8 NtRp5505 (dp5506 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp5507 (dp5508 g18 g3 (g19 g5 (ltRp5509 (dp5510 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5511 (dp5512 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5513 (dp5514 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5515 (dp5516 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p5517 sg22 I00 sg37 g38 sg39 g5517 sbag3 (g7 g8 NtRp5518 (dp5519 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp5520 (dp5521 g18 g3 (g19 g5 (ltRp5522 (dp5523 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5524 (dp5525 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5526 (dp5527 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5528 (dp5529 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p5530 sg22 I00 sg37 g38 sg39 g5530 sbag3 (g7 g8 NtRp5531 (dp5532 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp5533 (dp5534 g18 g3 (g19 g5 (ltRp5535 (dp5536 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5537 (dp5538 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5539 (dp5540 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5541 (dp5542 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p5543 sg22 I00 sg37 g38 sg39 g5543 sbag3 (g7 g8 NtRp5544 (dp5545 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp5546 (dp5547 g18 g3 (g19 g5 (ltRp5548 (dp5549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5550 (dp5551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5552 (dp5553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5554 (dp5555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p5556 sg22 I00 sg37 g38 sg39 g5556 sbag3 (g7 g8 NtRp5557 (dp5558 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp5559 (dp5560 g18 g3 (g19 g5 (ltRp5561 (dp5562 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5563 (dp5564 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5565 (dp5566 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5567 (dp5568 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p5569 sg22 I00 sg37 g38 sg39 g5569 sbag3 (g7 g8 NtRp5570 (dp5571 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp5572 (dp5573 g18 g3 (g19 g5 (ltRp5574 (dp5575 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5576 (dp5577 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5578 (dp5579 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5580 (dp5581 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p5582 sg22 I00 sg37 g38 sg39 g5582 sbag3 (g7 g8 NtRp5583 (dp5584 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp5585 (dp5586 g18 g3 (g19 g5 (ltRp5587 (dp5588 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5589 (dp5590 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5591 (dp5592 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5593 (dp5594 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p5595 sg22 I00 sg37 g38 sg39 g5595 sbag3 (g7 g8 NtRp5596 (dp5597 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp5598 (dp5599 g18 g3 (g19 g5 (ltRp5600 (dp5601 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5602 (dp5603 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5604 (dp5605 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5606 (dp5607 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p5608 sg22 I00 sg37 g38 sg39 g5608 sbag3 (g7 g8 NtRp5609 (dp5610 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp5611 (dp5612 g18 g3 (g19 g5 (ltRp5613 (dp5614 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5615 (dp5616 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5617 (dp5618 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5619 (dp5620 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p5621 sg22 I00 sg37 g38 sg39 g5621 sbag3 (g7 g8 NtRp5622 (dp5623 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp5624 (dp5625 g18 g3 (g19 g5 (ltRp5626 (dp5627 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5628 (dp5629 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5630 (dp5631 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5632 (dp5633 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p5634 sg22 I00 sg37 g38 sg39 g5634 sbag3 (g7 g8 NtRp5635 (dp5636 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp5637 (dp5638 g18 g3 (g19 g5 (ltRp5639 (dp5640 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5641 (dp5642 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5643 (dp5644 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5645 (dp5646 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p5647 sg22 I00 sg37 g38 sg39 g5647 sbag3 (g7 g8 NtRp5648 (dp5649 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp5650 (dp5651 g18 g3 (g19 g5 (ltRp5652 (dp5653 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5654 (dp5655 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5656 (dp5657 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5658 (dp5659 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p5660 sg22 I00 sg37 g38 sg39 g5660 sbag3 (g7 g8 NtRp5661 (dp5662 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp5663 (dp5664 g18 g3 (g19 g5 (ltRp5665 (dp5666 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5667 (dp5668 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5669 (dp5670 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5671 (dp5672 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p5673 sg22 I00 sg37 g38 sg39 g5673 sbag3 (g7 g8 NtRp5674 (dp5675 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp5676 (dp5677 g18 g3 (g19 g5 (ltRp5678 (dp5679 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5680 (dp5681 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5682 (dp5683 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5684 (dp5685 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p5686 sg22 I00 sg37 g38 sg39 g5686 sbag3 (g7 g8 NtRp5687 (dp5688 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp5689 (dp5690 g18 g3 (g19 g5 (ltRp5691 (dp5692 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5693 (dp5694 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5695 (dp5696 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5697 (dp5698 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p5699 sg22 I00 sg37 g38 sg39 g5699 sbag3 (g7 g8 NtRp5700 (dp5701 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp5702 (dp5703 g18 g3 (g19 g5 (ltRp5704 (dp5705 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5706 (dp5707 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5708 (dp5709 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5710 (dp5711 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p5712 sg22 I00 sg37 g38 sg39 g5712 sbag3 (g7 g8 NtRp5713 (dp5714 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp5715 (dp5716 g18 g3 (g19 g5 (ltRp5717 (dp5718 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5719 (dp5720 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5721 (dp5722 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5723 (dp5724 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p5725 sg22 I00 sg37 g38 sg39 g5725 sbag3 (g7 g8 NtRp5726 (dp5727 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp5728 (dp5729 g18 g3 (g19 g5 (ltRp5730 (dp5731 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5732 (dp5733 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5734 (dp5735 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5736 (dp5737 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p5738 sg22 I00 sg37 g38 sg39 g5738 sbag3 (g7 g8 NtRp5739 (dp5740 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp5741 (dp5742 g18 g3 (g19 g5 (ltRp5743 (dp5744 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5745 (dp5746 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5747 (dp5748 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5749 (dp5750 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p5751 sg22 I00 sg37 g38 sg39 g5751 sbag3 (g7 g8 NtRp5752 (dp5753 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp5754 (dp5755 g18 g3 (g19 g5 (ltRp5756 (dp5757 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5758 (dp5759 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5760 (dp5761 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5762 (dp5763 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p5764 sg22 I00 sg37 g38 sg39 g5764 sbag3 (g7 g8 NtRp5765 (dp5766 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp5767 (dp5768 g18 g3 (g19 g5 (ltRp5769 (dp5770 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5771 (dp5772 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5773 (dp5774 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5775 (dp5776 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p5777 sg22 I00 sg37 g38 sg39 g5777 sbag3 (g7 g8 NtRp5778 (dp5779 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp5780 (dp5781 g18 g3 (g19 g5 (ltRp5782 (dp5783 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5784 (dp5785 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5786 (dp5787 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5788 (dp5789 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p5790 sg22 I00 sg37 g38 sg39 g5790 sbag3 (g7 g8 NtRp5791 (dp5792 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp5793 (dp5794 g18 g3 (g19 g5 (ltRp5795 (dp5796 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5797 (dp5798 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5799 (dp5800 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5801 (dp5802 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p5803 sg22 I00 sg37 g38 sg39 g5803 sbag3 (g7 g8 NtRp5804 (dp5805 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp5806 (dp5807 g18 g3 (g19 g5 (ltRp5808 (dp5809 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5810 (dp5811 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5812 (dp5813 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5814 (dp5815 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p5816 sg22 I00 sg37 g38 sg39 g5816 sbag3 (g7 g8 NtRp5817 (dp5818 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp5819 (dp5820 g18 g3 (g19 g5 (ltRp5821 (dp5822 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5823 (dp5824 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5825 (dp5826 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5827 (dp5828 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p5829 sg22 I00 sg37 g38 sg39 g5829 sbag3 (g7 g8 NtRp5830 (dp5831 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp5832 (dp5833 g18 g3 (g19 g5 (ltRp5834 (dp5835 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5836 (dp5837 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5838 (dp5839 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5840 (dp5841 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p5842 sg22 I00 sg37 g38 sg39 g5842 sbag3 (g7 g8 NtRp5843 (dp5844 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp5845 (dp5846 g18 g3 (g19 g5 (ltRp5847 (dp5848 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5849 (dp5850 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5851 (dp5852 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5853 (dp5854 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p5855 sg22 I00 sg37 g38 sg39 g5855 sbag3 (g7 g8 NtRp5856 (dp5857 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp5858 (dp5859 g18 g3 (g19 g5 (ltRp5860 (dp5861 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5862 (dp5863 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5864 (dp5865 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5866 (dp5867 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p5868 sg22 I00 sg37 g38 sg39 g5868 sbag3 (g7 g8 NtRp5869 (dp5870 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp5871 (dp5872 g18 g3 (g19 g5 (ltRp5873 (dp5874 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5875 (dp5876 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5877 (dp5878 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5879 (dp5880 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p5881 sg22 I00 sg37 g38 sg39 g5881 sbag3 (g7 g8 NtRp5882 (dp5883 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp5884 (dp5885 g18 g3 (g19 g5 (ltRp5886 (dp5887 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5888 (dp5889 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5890 (dp5891 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5892 (dp5893 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p5894 sg22 I00 sg37 g38 sg39 g5894 sbag3 (g7 g8 NtRp5895 (dp5896 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp5897 (dp5898 g18 g3 (g19 g5 (ltRp5899 (dp5900 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5901 (dp5902 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5903 (dp5904 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5905 (dp5906 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p5907 sg22 I00 sg37 g38 sg39 g5907 sbag3 (g7 g8 NtRp5908 (dp5909 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp5910 (dp5911 g18 g3 (g19 g5 (ltRp5912 (dp5913 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5914 (dp5915 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5916 (dp5917 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5918 (dp5919 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p5920 sg22 I00 sg37 g38 sg39 g5920 sbag3 (g7 g8 NtRp5921 (dp5922 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp5923 (dp5924 g18 g3 (g19 g5 (ltRp5925 (dp5926 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5927 (dp5928 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5929 (dp5930 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5931 (dp5932 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p5933 sg22 I00 sg37 g38 sg39 g5933 sbag3 (g7 g8 NtRp5934 (dp5935 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp5936 (dp5937 g18 g3 (g19 g5 (ltRp5938 (dp5939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5940 (dp5941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5942 (dp5943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5944 (dp5945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p5946 sg22 I00 sg37 g38 sg39 g5946 sbag3 (g7 g8 NtRp5947 (dp5948 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp5949 (dp5950 g18 g3 (g19 g5 (ltRp5951 (dp5952 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5953 (dp5954 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5955 (dp5956 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5957 (dp5958 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p5959 sg22 I00 sg37 g38 sg39 g5959 sbag3 (g7 g8 NtRp5960 (dp5961 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp5962 (dp5963 g18 g3 (g19 g5 (ltRp5964 (dp5965 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5966 (dp5967 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5968 (dp5969 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5970 (dp5971 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p5972 sg22 I00 sg37 g38 sg39 g5972 sbag3 (g7 g8 NtRp5973 (dp5974 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp5975 (dp5976 g18 g3 (g19 g5 (ltRp5977 (dp5978 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5979 (dp5980 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5981 (dp5982 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5983 (dp5984 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p5985 sg22 I00 sg37 g38 sg39 g5985 sbag3 (g7 g8 NtRp5986 (dp5987 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp5988 (dp5989 g18 g3 (g19 g5 (ltRp5990 (dp5991 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5992 (dp5993 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5994 (dp5995 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5996 (dp5997 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p5998 sg22 I00 sg37 g38 sg39 g5998 sbag3 (g7 g8 NtRp5999 (dp6000 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp6001 (dp6002 g18 g3 (g19 g5 (ltRp6003 (dp6004 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6005 (dp6006 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6007 (dp6008 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6009 (dp6010 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p6011 sg22 I00 sg37 g38 sg39 g6011 sbag3 (g7 g8 NtRp6012 (dp6013 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp6014 (dp6015 g18 g3 (g19 g5 (ltRp6016 (dp6017 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6018 (dp6019 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6020 (dp6021 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6022 (dp6023 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p6024 sg22 I00 sg37 g38 sg39 g6024 sbag3 (g7 g8 NtRp6025 (dp6026 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp6027 (dp6028 g18 g3 (g19 g5 (ltRp6029 (dp6030 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6031 (dp6032 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6033 (dp6034 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6035 (dp6036 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p6037 sg22 I00 sg37 g38 sg39 g6037 sbag3 (g7 g8 NtRp6038 (dp6039 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp6040 (dp6041 g18 g3 (g19 g5 (ltRp6042 (dp6043 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6044 (dp6045 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6046 (dp6047 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6048 (dp6049 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p6050 sg22 I00 sg37 g38 sg39 g6050 sbag3 (g7 g8 NtRp6051 (dp6052 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp6053 (dp6054 g18 g3 (g19 g5 (ltRp6055 (dp6056 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6057 (dp6058 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6059 (dp6060 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6061 (dp6062 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p6063 sg22 I00 sg37 g38 sg39 g6063 sbag3 (g7 g8 NtRp6064 (dp6065 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp6066 (dp6067 g18 g3 (g19 g5 (ltRp6068 (dp6069 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6070 (dp6071 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6072 (dp6073 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6074 (dp6075 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p6076 sg22 I00 sg37 g38 sg39 g6076 sbag3 (g7 g8 NtRp6077 (dp6078 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp6079 (dp6080 g18 g3 (g19 g5 (ltRp6081 (dp6082 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6083 (dp6084 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6085 (dp6086 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6087 (dp6088 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p6089 sg22 I00 sg37 g38 sg39 g6089 sbag3 (g7 g8 NtRp6090 (dp6091 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp6092 (dp6093 g18 g3 (g19 g5 (ltRp6094 (dp6095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6096 (dp6097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6098 (dp6099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6100 (dp6101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p6102 sg22 I00 sg37 g38 sg39 g6102 sbag3 (g7 g8 NtRp6103 (dp6104 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp6105 (dp6106 g18 g3 (g19 g5 (ltRp6107 (dp6108 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6109 (dp6110 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6111 (dp6112 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6113 (dp6114 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p6115 sg22 I00 sg37 g38 sg39 g6115 sbag3 (g7 g8 NtRp6116 (dp6117 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp6118 (dp6119 g18 g3 (g19 g5 (ltRp6120 (dp6121 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6122 (dp6123 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6124 (dp6125 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6126 (dp6127 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p6128 sg22 I00 sg37 g38 sg39 g6128 sbag3 (g7 g8 NtRp6129 (dp6130 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp6131 (dp6132 g18 g3 (g19 g5 (ltRp6133 (dp6134 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6135 (dp6136 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6137 (dp6138 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6139 (dp6140 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p6141 sg22 I00 sg37 g38 sg39 g6141 sbag3 (g7 g8 NtRp6142 (dp6143 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp6144 (dp6145 g18 g3 (g19 g5 (ltRp6146 (dp6147 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6148 (dp6149 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6150 (dp6151 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6152 (dp6153 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p6154 sg22 I00 sg37 g38 sg39 g6154 sbag3 (g7 g8 NtRp6155 (dp6156 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp6157 (dp6158 g18 g3 (g19 g5 (ltRp6159 (dp6160 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6161 (dp6162 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6163 (dp6164 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6165 (dp6166 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p6167 sg22 I00 sg37 g38 sg39 g6167 sbag3 (g7 g8 NtRp6168 (dp6169 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp6170 (dp6171 g18 g3 (g19 g5 (ltRp6172 (dp6173 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6174 (dp6175 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6176 (dp6177 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6178 (dp6179 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p6180 sg22 I00 sg37 g38 sg39 g6180 sbag3 (g7 g8 NtRp6181 (dp6182 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp6183 (dp6184 g18 g3 (g19 g5 (ltRp6185 (dp6186 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6187 (dp6188 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6189 (dp6190 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6191 (dp6192 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p6193 sg22 I00 sg37 g38 sg39 g6193 sbag3 (g7 g8 NtRp6194 (dp6195 g11 Nsg12 I186 sg13 I01 sg14 g3 (g15 g8 NtRp6196 (dp6197 g18 g3 (g19 g5 (ltRp6198 (dp6199 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6200 (dp6201 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6202 (dp6203 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6204 (dp6205 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p6206 sg22 I00 sg37 g38 sg39 g6206 sbag3 (g7 g8 NtRp6207 (dp6208 g11 Nsg12 I187 sg13 I01 sg14 g3 (g15 g8 NtRp6209 (dp6210 g18 g3 (g19 g5 (ltRp6211 (dp6212 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6213 (dp6214 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6215 (dp6216 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6217 (dp6218 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p6219 sg22 I00 sg37 g38 sg39 g6219 sbag3 (g7 g8 NtRp6220 (dp6221 g11 Nsg12 I188 sg13 I01 sg14 g3 (g15 g8 NtRp6222 (dp6223 g18 g3 (g19 g5 (ltRp6224 (dp6225 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6226 (dp6227 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6228 (dp6229 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6230 (dp6231 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p6232 sg22 I00 sg37 g38 sg39 g6232 sbag3 (g7 g8 NtRp6233 (dp6234 g11 Nsg12 I189 sg13 I01 sg14 g3 (g15 g8 NtRp6235 (dp6236 g18 g3 (g19 g5 (ltRp6237 (dp6238 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6239 (dp6240 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6241 (dp6242 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6243 (dp6244 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p6245 sg22 I00 sg37 g38 sg39 g6245 sbag3 (g7 g8 NtRp6246 (dp6247 g11 Nsg12 I190 sg13 I01 sg14 g3 (g15 g8 NtRp6248 (dp6249 g18 g3 (g19 g5 (ltRp6250 (dp6251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6252 (dp6253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6254 (dp6255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6256 (dp6257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p6258 sg22 I00 sg37 g38 sg39 g6258 sbag3 (g7 g8 NtRp6259 (dp6260 g11 Nsg12 I191 sg13 I01 sg14 g3 (g15 g8 NtRp6261 (dp6262 g18 g3 (g19 g5 (ltRp6263 (dp6264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6265 (dp6266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6267 (dp6268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6269 (dp6270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p6271 sg22 I00 sg37 g38 sg39 g6271 sbag3 (g7 g8 NtRp6272 (dp6273 g11 Nsg12 I192 sg13 I01 sg14 g3 (g15 g8 NtRp6274 (dp6275 g18 g3 (g19 g5 (ltRp6276 (dp6277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6278 (dp6279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6280 (dp6281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6282 (dp6283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p6284 sg22 I00 sg37 g38 sg39 g6284 sbag3 (g7 g8 NtRp6285 (dp6286 g11 Nsg12 I193 sg13 I01 sg14 g3 (g15 g8 NtRp6287 (dp6288 g18 g3 (g19 g5 (ltRp6289 (dp6290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6291 (dp6292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6293 (dp6294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6295 (dp6296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p6297 sg22 I00 sg37 g38 sg39 g6297 sbag3 (g7 g8 NtRp6298 (dp6299 g11 Nsg12 I194 sg13 I01 sg14 g3 (g15 g8 NtRp6300 (dp6301 g18 g3 (g19 g5 (ltRp6302 (dp6303 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6304 (dp6305 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6306 (dp6307 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6308 (dp6309 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p6310 sg22 I00 sg37 g38 sg39 g6310 sbag3 (g7 g8 NtRp6311 (dp6312 g11 Nsg12 I195 sg13 I01 sg14 g3 (g15 g8 NtRp6313 (dp6314 g18 g3 (g19 g5 (ltRp6315 (dp6316 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6317 (dp6318 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6319 (dp6320 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6321 (dp6322 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p6323 sg22 I00 sg37 g38 sg39 g6323 sbag3 (g7 g8 NtRp6324 (dp6325 g11 Nsg12 I196 sg13 I01 sg14 g3 (g15 g8 NtRp6326 (dp6327 g18 g3 (g19 g5 (ltRp6328 (dp6329 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6330 (dp6331 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6332 (dp6333 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6334 (dp6335 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p6336 sg22 I00 sg37 g38 sg39 g6336 sbag3 (g7 g8 NtRp6337 (dp6338 g11 Nsg12 I197 sg13 I01 sg14 g3 (g15 g8 NtRp6339 (dp6340 g18 g3 (g19 g5 (ltRp6341 (dp6342 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6343 (dp6344 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6345 (dp6346 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6347 (dp6348 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p6349 sg22 I00 sg37 g38 sg39 g6349 sbag3 (g7 g8 NtRp6350 (dp6351 g11 Nsg12 I198 sg13 I01 sg14 g3 (g15 g8 NtRp6352 (dp6353 g18 g3 (g19 g5 (ltRp6354 (dp6355 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6356 (dp6357 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6358 (dp6359 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6360 (dp6361 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p6362 sg22 I00 sg37 g38 sg39 g6362 sbag3 (g7 g8 NtRp6363 (dp6364 g11 Nsg12 I199 sg13 I01 sg14 g3 (g15 g8 NtRp6365 (dp6366 g18 g3 (g19 g5 (ltRp6367 (dp6368 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6369 (dp6370 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6371 (dp6372 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6373 (dp6374 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p6375 sg22 I00 sg37 g38 sg39 g6375 sbag3 (g7 g8 NtRp6376 (dp6377 g11 Nsg12 I200 sg13 I01 sg14 g3 (g15 g8 NtRp6378 (dp6379 g18 g3 (g19 g5 (ltRp6380 (dp6381 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6382 (dp6383 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6384 (dp6385 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6386 (dp6387 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p6388 sg22 I00 sg37 g38 sg39 g6388 sbag3 (g7 g8 NtRp6389 (dp6390 g11 Nsg12 I201 sg13 I01 sg14 g3 (g15 g8 NtRp6391 (dp6392 g18 g3 (g19 g5 (ltRp6393 (dp6394 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6395 (dp6396 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6397 (dp6398 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6399 (dp6400 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p6401 sg22 I00 sg37 g38 sg39 g6401 sbag3 (g7 g8 NtRp6402 (dp6403 g11 Nsg12 I202 sg13 I01 sg14 g3 (g15 g8 NtRp6404 (dp6405 g18 g3 (g19 g5 (ltRp6406 (dp6407 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6408 (dp6409 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6410 (dp6411 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6412 (dp6413 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p6414 sg22 I00 sg37 g38 sg39 g6414 sbag3 (g7 g8 NtRp6415 (dp6416 g11 Nsg12 I203 sg13 I01 sg14 g3 (g15 g8 NtRp6417 (dp6418 g18 g3 (g19 g5 (ltRp6419 (dp6420 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6421 (dp6422 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6423 (dp6424 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6425 (dp6426 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p6427 sg22 I00 sg37 g38 sg39 g6427 sbag3 (g7 g8 NtRp6428 (dp6429 g11 Nsg12 I204 sg13 I01 sg14 g3 (g15 g8 NtRp6430 (dp6431 g18 g3 (g19 g5 (ltRp6432 (dp6433 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6434 (dp6435 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6436 (dp6437 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6438 (dp6439 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p6440 sg22 I00 sg37 g38 sg39 g6440 sbag3 (g7 g8 NtRp6441 (dp6442 g11 Nsg12 I205 sg13 I01 sg14 g3 (g15 g8 NtRp6443 (dp6444 g18 g3 (g19 g5 (ltRp6445 (dp6446 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6447 (dp6448 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6449 (dp6450 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6451 (dp6452 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p6453 sg22 I00 sg37 g38 sg39 g6453 sbag3 (g7 g8 NtRp6454 (dp6455 g11 Nsg12 I206 sg13 I01 sg14 g3 (g15 g8 NtRp6456 (dp6457 g18 g3 (g19 g5 (ltRp6458 (dp6459 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6460 (dp6461 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6462 (dp6463 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6464 (dp6465 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p6466 sg22 I00 sg37 g38 sg39 g6466 sbag3 (g7 g8 NtRp6467 (dp6468 g11 Nsg12 I207 sg13 I01 sg14 g3 (g15 g8 NtRp6469 (dp6470 g18 g3 (g19 g5 (ltRp6471 (dp6472 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6473 (dp6474 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6475 (dp6476 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6477 (dp6478 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p6479 sg22 I00 sg37 g38 sg39 g6479 sbag3 (g7 g8 NtRp6480 (dp6481 g11 Nsg12 I208 sg13 I01 sg14 g3 (g15 g8 NtRp6482 (dp6483 g18 g3 (g19 g5 (ltRp6484 (dp6485 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6486 (dp6487 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6488 (dp6489 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6490 (dp6491 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p6492 sg22 I00 sg37 g38 sg39 g6492 sbag3 (g7 g8 NtRp6493 (dp6494 g11 Nsg12 I209 sg13 I01 sg14 g3 (g15 g8 NtRp6495 (dp6496 g18 g3 (g19 g5 (ltRp6497 (dp6498 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6499 (dp6500 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6501 (dp6502 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6503 (dp6504 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p6505 sg22 I00 sg37 g38 sg39 g6505 sbag3 (g7 g8 NtRp6506 (dp6507 g11 Nsg12 I210 sg13 I01 sg14 g3 (g15 g8 NtRp6508 (dp6509 g18 g3 (g19 g5 (ltRp6510 (dp6511 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6512 (dp6513 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6514 (dp6515 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6516 (dp6517 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p6518 sg22 I00 sg37 g38 sg39 g6518 sbag3 (g7 g8 NtRp6519 (dp6520 g11 Nsg12 I211 sg13 I01 sg14 g3 (g15 g8 NtRp6521 (dp6522 g18 g3 (g19 g5 (ltRp6523 (dp6524 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6525 (dp6526 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6527 (dp6528 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6529 (dp6530 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p6531 sg22 I00 sg37 g38 sg39 g6531 sbag3 (g7 g8 NtRp6532 (dp6533 g11 Nsg12 I212 sg13 I01 sg14 g3 (g15 g8 NtRp6534 (dp6535 g18 g3 (g19 g5 (ltRp6536 (dp6537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6538 (dp6539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6540 (dp6541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6542 (dp6543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p6544 sg22 I00 sg37 g38 sg39 g6544 sbag3 (g7 g8 NtRp6545 (dp6546 g11 Nsg12 I213 sg13 I01 sg14 g3 (g15 g8 NtRp6547 (dp6548 g18 g3 (g19 g5 (ltRp6549 (dp6550 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6551 (dp6552 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6553 (dp6554 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6555 (dp6556 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p6557 sg22 I00 sg37 g38 sg39 g6557 sbag3 (g7 g8 NtRp6558 (dp6559 g11 Nsg12 I214 sg13 I01 sg14 g3 (g15 g8 NtRp6560 (dp6561 g18 g3 (g19 g5 (ltRp6562 (dp6563 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6564 (dp6565 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6566 (dp6567 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6568 (dp6569 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p6570 sg22 I00 sg37 g38 sg39 g6570 sbag3 (g7 g8 NtRp6571 (dp6572 g11 Nsg12 I215 sg13 I01 sg14 g3 (g15 g8 NtRp6573 (dp6574 g18 g3 (g19 g5 (ltRp6575 (dp6576 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6577 (dp6578 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6579 (dp6580 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6581 (dp6582 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p6583 sg22 I00 sg37 g38 sg39 g6583 sbag3 (g7 g8 NtRp6584 (dp6585 g11 Nsg12 I216 sg13 I01 sg14 g3 (g15 g8 NtRp6586 (dp6587 g18 g3 (g19 g5 (ltRp6588 (dp6589 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6590 (dp6591 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6592 (dp6593 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6594 (dp6595 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p6596 sg22 I00 sg37 g38 sg39 g6596 sbag3 (g7 g8 NtRp6597 (dp6598 g11 Nsg12 I217 sg13 I01 sg14 g3 (g15 g8 NtRp6599 (dp6600 g18 g3 (g19 g5 (ltRp6601 (dp6602 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6603 (dp6604 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6605 (dp6606 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6607 (dp6608 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p6609 sg22 I00 sg37 g38 sg39 g6609 sbag3 (g7 g8 NtRp6610 (dp6611 g11 Nsg12 I218 sg13 I01 sg14 g3 (g15 g8 NtRp6612 (dp6613 g18 g3 (g19 g5 (ltRp6614 (dp6615 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6616 (dp6617 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6618 (dp6619 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6620 (dp6621 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p6622 sg22 I00 sg37 g38 sg39 g6622 sbag3 (g7 g8 NtRp6623 (dp6624 g11 Nsg12 I219 sg13 I01 sg14 g3 (g15 g8 NtRp6625 (dp6626 g18 g3 (g19 g5 (ltRp6627 (dp6628 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6629 (dp6630 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6631 (dp6632 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6633 (dp6634 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p6635 sg22 I00 sg37 g38 sg39 g6635 sbag3 (g7 g8 NtRp6636 (dp6637 g11 Nsg12 I220 sg13 I01 sg14 g3 (g15 g8 NtRp6638 (dp6639 g18 g3 (g19 g5 (ltRp6640 (dp6641 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6642 (dp6643 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6644 (dp6645 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6646 (dp6647 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p6648 sg22 I00 sg37 g38 sg39 g6648 sbag3 (g7 g8 NtRp6649 (dp6650 g11 Nsg12 I221 sg13 I01 sg14 g3 (g15 g8 NtRp6651 (dp6652 g18 g3 (g19 g5 (ltRp6653 (dp6654 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6655 (dp6656 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6657 (dp6658 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6659 (dp6660 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p6661 sg22 I00 sg37 g38 sg39 g6661 sbag3 (g7 g8 NtRp6662 (dp6663 g11 Nsg12 I222 sg13 I01 sg14 g3 (g15 g8 NtRp6664 (dp6665 g18 g3 (g19 g5 (ltRp6666 (dp6667 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6668 (dp6669 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6670 (dp6671 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6672 (dp6673 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p6674 sg22 I00 sg37 g38 sg39 g6674 sbag3 (g7 g8 NtRp6675 (dp6676 g11 Nsg12 I223 sg13 I01 sg14 g3 (g15 g8 NtRp6677 (dp6678 g18 g3 (g19 g5 (ltRp6679 (dp6680 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6681 (dp6682 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6683 (dp6684 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6685 (dp6686 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p6687 sg22 I00 sg37 g38 sg39 g6687 sbag3 (g7 g8 NtRp6688 (dp6689 g11 Nsg12 I224 sg13 I01 sg14 g3 (g15 g8 NtRp6690 (dp6691 g18 g3 (g19 g5 (ltRp6692 (dp6693 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6694 (dp6695 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6696 (dp6697 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6698 (dp6699 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p6700 sg22 I00 sg37 g38 sg39 g6700 sbag3 (g7 g8 NtRp6701 (dp6702 g11 Nsg12 I225 sg13 I01 sg14 g3 (g15 g8 NtRp6703 (dp6704 g18 g3 (g19 g5 (ltRp6705 (dp6706 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6707 (dp6708 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6709 (dp6710 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6711 (dp6712 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p6713 sg22 I00 sg37 g38 sg39 g6713 sbag3 (g7 g8 NtRp6714 (dp6715 g11 Nsg12 I226 sg13 I01 sg14 g3 (g15 g8 NtRp6716 (dp6717 g18 g3 (g19 g5 (ltRp6718 (dp6719 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6720 (dp6721 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6722 (dp6723 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6724 (dp6725 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p6726 sg22 I00 sg37 g38 sg39 g6726 sbag3 (g7 g8 NtRp6727 (dp6728 g11 Nsg12 I227 sg13 I01 sg14 g3 (g15 g8 NtRp6729 (dp6730 g18 g3 (g19 g5 (ltRp6731 (dp6732 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6733 (dp6734 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6735 (dp6736 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6737 (dp6738 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p6739 sg22 I00 sg37 g38 sg39 g6739 sbag3 (g7 g8 NtRp6740 (dp6741 g11 Nsg12 I228 sg13 I01 sg14 g3 (g15 g8 NtRp6742 (dp6743 g18 g3 (g19 g5 (ltRp6744 (dp6745 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6746 (dp6747 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6748 (dp6749 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6750 (dp6751 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p6752 sg22 I00 sg37 g38 sg39 g6752 sbag3 (g7 g8 NtRp6753 (dp6754 g11 Nsg12 I229 sg13 I01 sg14 g3 (g15 g8 NtRp6755 (dp6756 g18 g3 (g19 g5 (ltRp6757 (dp6758 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6759 (dp6760 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6761 (dp6762 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6763 (dp6764 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p6765 sg22 I00 sg37 g38 sg39 g6765 sbag3 (g7 g8 NtRp6766 (dp6767 g11 Nsg12 I230 sg13 I01 sg14 g3 (g15 g8 NtRp6768 (dp6769 g18 g3 (g19 g5 (ltRp6770 (dp6771 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6772 (dp6773 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6774 (dp6775 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6776 (dp6777 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p6778 sg22 I00 sg37 g38 sg39 g6778 sbag3 (g7 g8 NtRp6779 (dp6780 g11 Nsg12 I231 sg13 I01 sg14 g3 (g15 g8 NtRp6781 (dp6782 g18 g3 (g19 g5 (ltRp6783 (dp6784 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6785 (dp6786 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6787 (dp6788 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6789 (dp6790 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p6791 sg22 I00 sg37 g38 sg39 g6791 sbag3 (g7 g8 NtRp6792 (dp6793 g11 Nsg12 I232 sg13 I01 sg14 g3 (g15 g8 NtRp6794 (dp6795 g18 g3 (g19 g5 (ltRp6796 (dp6797 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6798 (dp6799 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6800 (dp6801 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6802 (dp6803 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p6804 sg22 I00 sg37 g38 sg39 g6804 sbag3 (g7 g8 NtRp6805 (dp6806 g11 Nsg12 I233 sg13 I01 sg14 g3 (g15 g8 NtRp6807 (dp6808 g18 g3 (g19 g5 (ltRp6809 (dp6810 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6811 (dp6812 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6813 (dp6814 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6815 (dp6816 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p6817 sg22 I00 sg37 g38 sg39 g6817 sbag3 (g7 g8 NtRp6818 (dp6819 g11 Nsg12 I234 sg13 I01 sg14 g3 (g15 g8 NtRp6820 (dp6821 g18 g3 (g19 g5 (ltRp6822 (dp6823 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6824 (dp6825 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6826 (dp6827 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6828 (dp6829 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p6830 sg22 I00 sg37 g38 sg39 g6830 sbag3 (g7 g8 NtRp6831 (dp6832 g11 Nsg12 I235 sg13 I01 sg14 g3 (g15 g8 NtRp6833 (dp6834 g18 g3 (g19 g5 (ltRp6835 (dp6836 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6837 (dp6838 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6839 (dp6840 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6841 (dp6842 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p6843 sg22 I00 sg37 g38 sg39 g6843 sbag3 (g7 g8 NtRp6844 (dp6845 g11 Nsg12 I236 sg13 I01 sg14 g3 (g15 g8 NtRp6846 (dp6847 g18 g3 (g19 g5 (ltRp6848 (dp6849 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6850 (dp6851 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6852 (dp6853 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6854 (dp6855 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p6856 sg22 I00 sg37 g38 sg39 g6856 sbag3 (g7 g8 NtRp6857 (dp6858 g11 Nsg12 I237 sg13 I01 sg14 g3 (g15 g8 NtRp6859 (dp6860 g18 g3 (g19 g5 (ltRp6861 (dp6862 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6863 (dp6864 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6865 (dp6866 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6867 (dp6868 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p6869 sg22 I00 sg37 g38 sg39 g6869 sbag3 (g7 g8 NtRp6870 (dp6871 g11 Nsg12 I238 sg13 I01 sg14 g3 (g15 g8 NtRp6872 (dp6873 g18 g3 (g19 g5 (ltRp6874 (dp6875 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6876 (dp6877 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6878 (dp6879 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6880 (dp6881 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p6882 sg22 I00 sg37 g38 sg39 g6882 sbag3 (g7 g8 NtRp6883 (dp6884 g11 Nsg12 I239 sg13 I01 sg14 g3 (g15 g8 NtRp6885 (dp6886 g18 g3 (g19 g5 (ltRp6887 (dp6888 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6889 (dp6890 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6891 (dp6892 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6893 (dp6894 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p6895 sg22 I00 sg37 g38 sg39 g6895 sbag3 (g7 g8 NtRp6896 (dp6897 g11 Nsg12 I240 sg13 I01 sg14 g3 (g15 g8 NtRp6898 (dp6899 g18 g3 (g19 g5 (ltRp6900 (dp6901 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6902 (dp6903 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6904 (dp6905 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6906 (dp6907 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p6908 sg22 I00 sg37 g38 sg39 g6908 sbag3 (g7 g8 NtRp6909 (dp6910 g11 Nsg12 I241 sg13 I01 sg14 g3 (g15 g8 NtRp6911 (dp6912 g18 g3 (g19 g5 (ltRp6913 (dp6914 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6915 (dp6916 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6917 (dp6918 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6919 (dp6920 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p6921 sg22 I00 sg37 g38 sg39 g6921 sbag3 (g7 g8 NtRp6922 (dp6923 g11 Nsg12 I242 sg13 I01 sg14 g3 (g15 g8 NtRp6924 (dp6925 g18 g3 (g19 g5 (ltRp6926 (dp6927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6928 (dp6929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6930 (dp6931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6932 (dp6933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p6934 sg22 I00 sg37 g38 sg39 g6934 sbag3 (g7 g8 NtRp6935 (dp6936 g11 Nsg12 I243 sg13 I01 sg14 g3 (g15 g8 NtRp6937 (dp6938 g18 g3 (g19 g5 (ltRp6939 (dp6940 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6941 (dp6942 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6943 (dp6944 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6945 (dp6946 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p6947 sg22 I00 sg37 g38 sg39 g6947 sbag3 (g7 g8 NtRp6948 (dp6949 g11 Nsg12 I244 sg13 I01 sg14 g3 (g15 g8 NtRp6950 (dp6951 g18 g3 (g19 g5 (ltRp6952 (dp6953 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6954 (dp6955 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6956 (dp6957 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6958 (dp6959 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p6960 sg22 I00 sg37 g38 sg39 g6960 sbatRp6961 (dp6962 g12 I244 sg22 I00 sg11 Nsbs.</svRestConfiguration> </statManagerOptions> <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-4K.rxf b/samples/vnf_samples/traffic_profiles/ixload/HTTP-Throughput_2Ports.rxf index 2ec85b5af..ef7b30526 100644 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-4K.rxf +++ b/samples/vnf_samples/traffic_profiles/ixload/HTTP-Throughput_2Ports.rxf @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <root ver="[21, [1, [0, [0]]]]" type="ixRepository"> <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> + <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="628fdbe1-4254-48b1-8765-a4d5bbafd1ff" version="6.70.442"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442"> <name type="String">uplink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.442"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.442"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.442"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442"> <name type="String">downlink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.442"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.442"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.442"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.80.2"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.80.2"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.80.2"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.80.2"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <payloadAttrTypes type="ListNode" /> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.442"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> </_smSessionXml> <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> <xml type="str"></xml> @@ -10,11 +10,11 @@ <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> </_quickTestConfig> <lastApiUniqueId type="int">15481</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_2Ports-CC-4K.rxf</name> + <version type="str">8.30.115.152</version> + <name type="str">HTTP-Throughput_2Ports.rxf</name> <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_2Ports-CC-1B.rxf</last> + <path type="str">C:\ixload</path> + <last type="str">HTTP-Throughput_2Ports.rxf</last> <activeTest type="str">Test1</activeTest> <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> @@ -54,8 +54,8 @@ <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> <name type="str">Client</name> <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> + <item ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> + <name type="str">HTTP client@uplink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -98,8 +98,8 @@ <inUse type="bool">True</inUse> <customPortMap type="NoneType">None</customPortMap> <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> + <destinationCommunity ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> + <name type="str">HTTP server@downlink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -484,7 +484,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> + <name type="str">downlink_0</name> <role type="str">Server</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -498,7 +498,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> + <name type="str">Network Range IP-R2 in downlink_0 (152.40.40.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -743,6 +743,7 @@ <browserEmulationName type="str">Custom1</browserEmulationName> <enableSsl type="int">0</enableSsl> <sslVersion type="int">3</sslVersion> + <disableMacValidation type="int">0</disableMacValidation> <sslReuseMethod type="int">0</sslReuseMethod> <sequentialSessionReuse type="int">0</sequentialSessionReuse> <enablesslRecordSize type="int">0</enablesslRecordSize> @@ -807,7 +808,7 @@ </item> </outputList> <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/4k.html</pageObject> + <pageObject type="str">/1b.html</pageObject> <abort type="str">None</abort> <arguments type="str"></arguments> <namevalueargs type="str"></namevalueargs> @@ -862,12 +863,16 @@ <ipPreference type="int">2</ipPreference> <tcpCloseOption type="int">0</tcpCloseOption> <piggybackAck type="int">1</piggybackAck> + <tcpFastOpen type="int">0</tcpFastOpen> <enableLargeHeader type="int">0</enableLargeHeader> <maxHeaderLen type="int">1024</maxHeaderLen> <useAllIPs type="int">0</useAllIPs> <enableDecompressSupport type="int">0</enableDecompressSupport> <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> + <enableAuth type="int">0</enableAuth> + <authProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthProfileList" itemtype="ixAuthProfile"/> + <ipMappingList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthIpMapList" itemtype="ixAuthIpMap"/> <uniqueID type="int">1</uniqueID> <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> @@ -889,7 +894,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> + <name type="str">uplink_0</name> <role type="str">Client</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -903,7 +908,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> + <name type="str">Network Range IP-R1 in uplink_0 (152.16.100.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -1031,15 +1036,15 @@ <role type="str">Client</role> <activeRole type="str">Client</activeRole> <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> + <objectiveType type="str">throughputKBps</objectiveType> + <objectiveValue type="int">1250000</objectiveValue> + <userObjectiveType type="str">throughputMbps</userObjectiveType> + <userObjectiveValue type="long">10000</userObjectiveValue> + <constraintType type="str">SimulatedUserConstraint</constraintType> <constraintValue type="int">100</constraintValue> <timerGranularity type="int">100</timerGranularity> <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> + <secondaryConstraintType type="str">SimulatedUserConstraint</secondaryConstraintType> <secondaryConstraintValue type="int">100</secondaryConstraintValue> <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> <portMapPolicy type="str">portMesh</portMapPolicy> @@ -1050,7 +1055,7 @@ <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> <objectID type="int">0</objectID> <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> + <_objectiveValue type="int">1250000</_objectiveValue> <timelineScale type="float">1.0</timelineScale> </item> </activityParameters> @@ -1110,16 +1115,16 @@ <iterationTime type="int">620</iterationTime> <totalTime type="int">620</totalTime> <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> + <objectiveType type="str">n/a</objectiveType> + <objectiveValue type="int">1250000</objectiveValue> <rampUpType type="int">-1</rampUpType> <rampUpValue type="int">30000</rampUpValue> <rampUpInterval type="int">1</rampUpInterval> <rampUpTime type="int">0</rampUpTime> <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> + <userObjectiveType type="str">throughputMbps</userObjectiveType> + <userObjectiveValue type="long">10000</userObjectiveValue> + <totalUserObjectiveValue type="long">10000</totalUserObjectiveValue> <objectID type="int">0</objectID> <_apiUniqueId type="int">12925</_apiUniqueId> <isVisible type="bool">True</isVisible> @@ -1258,7 +1263,7 @@ <pollingInterval type="int">2</pollingInterval> <allowCsvLogging type="bool">False</allowCsvLogging> <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6&EOXC@8_BL1*U6[TN9P(-!2VA'EF$9# 1'FD+:KRB2&>B<DC.UPS&K_ M^]K.00@)K78_M''\/.]AY[']FLZ'_=I7MHA0' 9W-: 9M0_W'8=!]@6C'2)' MJ*DU#<W0S%:SQ@F(BMX1IDSYA YW-;AA>(^A1K?:1EA0A@(7:3G>5P(W'.+& MO<EX/AC/%?V^,YT-'-[LSNW)N/C^,NC;\^[#:"" WN3IP1X/^EEHFK7>D\!9 M\/O.D* ?$><<E"WT(W17,VLR$-V.PM4*!ZNT?PA]BB0VQVOD' +W ;W"+0Y) MRC RE#*XWDP)<K',+,'K$A^L"$]&3.O\L$$I!B0VX=/LA]";DI AE^5LYR1" MA<0>L>>A0#BBYSD. KCP41\RZ+"0H'/"]#@[^3P:9=87(_&$)A';1"R;R:?( M9WCC%\<F27WG#=H3W O949Y?+Z(L7'_DW^PUXS33F$/LHRED&2+[NSXBC*9/ MA6LZH.T]Q7>U5\8V;5W?[7;:KJZ%9*6;A@'T;T\CQWU%:ZCB@'\T/AFUS,I[ MVTH&U=.H?;2$?$QRGD[?).T4[I$P40%!B*.%]QGT</B1A-&F ." W9L=73PZ M>B6KYV,4L&%(UI$/'<08UTOV[?Z^^F7?O^7_NK=7/Z*0W7Z)%W?\THX?0+/B MQN]G;#& A/O'$?SSV/SGV(R7!%\0LR@HYG'EL]N3?2>-;,0-A:LD]+A% D1L MJ8)FW/YPM6*WN<RXJR2*'2Q#!Q$,??P3BB7T %<Y)<3F[Y9#DLE1$^^SCUFG M.2J*R'+]PI+9X"K'+E_I&UKDQ4PQGC%<(X&*-A"=>KZWW*8'&5J%Y" 88@GK MC_/Y-+/-H^?VO>4J75B",&P_V]_LKCH?.'/G6?A1M\.O+_9TVW@QIR%7O=KK MJ>!!(_NEC%"P+T\0D70 'CT.ZMA[;M6/Y)@5O1)^W"4BOL!QWN*(-":+O\3. MNT7T$NL1KUY]_L<J6=G^RFR^=S*\Q(@(INNYUF+A>JJ%W(7: #<+=6$"I()6 MRS"0Z0&S;LDYJ7)P'HJ+*:\3_@J U91.<M"YW6>*B&/W!>BH0+54$Z@MTZHW M+*M15YN&"9H\F6O5,EMFO64V#+5N-&]NFBWI.F==FA+7-V'(FP2"81J@I0*@ M&JTYJ+>M1AM86M,TK&M@JL9UVS#2;$^L*OR&_ SG#(4OYW: _61),GY")JNU MXI/$F^(3=%]Q@-)IZ8^=CZH0>:S?,LH;GKJ>)TYTP03-&\VT&II9-S1@WAP- MVVUPNEGI52[.@]G[,6*[D'Q/MVG.NM;,N JK2V=EE N.9LA'D,JQV?L1KS>4 M:PT8RJ![ZBQ'N^ L7>N]]C/?S%8$KA6Q!5#EU_UU\[=GFU=CSW&49Y&U6HQ2 MO5?8^QG:\$T&D=RPZEI+C!RT$B\EE/(E^_G)<:$O1P.,1'"%_G-#9YN#/RWX M5BW,3GI+12HKDS,92N/W' "Y@P)17C/0R4:<9!4"Z86^S_<L4<9)12,&^0?P M8IF=8I7&(P1)@#QQ> K>4I1W>0<%O-+/T ]WLB"AI6Y.X4HO?.\33%D("J)< MVSDW1?R2HZ3TO^2K2*EVQ^ORT U].^"*6T(7E7LL954ZG8410S,8K,J]%> R M-^N-V#WFF5R*4U^&5^GRHMYB77J'0*B6W[=*3K\3RA=1Z)V1LJ574:T)=EQ9 M9[>T_W!!S IO<4$)_(-\!Z)CA(/OR#L6YD<;/5'"L45+<7&1O>]((2L!/R7N M:M);+7>#KIWB\5VFIH3$0T3>=:#+A4%':(O\]-*I2PM^HPW6F\O764Y(Z@-Y M9\G=9P74"X,E7D4$YF^08M8I!UT.RN^1O&\AB7.,#T]AGQRC4-9!Y\>KAZA+ ML%1( N;*7>Z5'VD^/\_2,DM\[210/JZ'MF\8Y!AZ/O/_JPUI+L8I'ME/'/?_ % D1BE1\ end </svConfiguration> + <svConfiguration type="str">begin 666 <data> M>)RE6&MSXC84_2L>.LVTT_HAFU?(8R<!LF&6! :S:6>:SHZP!6C7V%Y9YM%. M_WNO9&.,L4FF_;"+K'/NU95T='65ZP_;E:>L"8MHX-_4D&;4/MQ>VQSS%THV MA!V@IM8T-$.SC&8-""02O4,:<>43V=W4<,CIEF(M6FNAL(@X\1VBY7B_,1P" M!,;=T?.T_SQ5]-OK\:1O0_-N.A@]%[^_]'N#Z=W]L"^ [NCI?O#<[V5#1UGK M/0&<#'Y[_<#(]Q@X.V6-O9C<U,R:'"A:#X/%@OJ+??\#]B(BL2E=$7OG._=D MB=<T8'N&D:$1QZMPS(A#960I;DF\OV 0C%C6Z2XD>PQ); 3+[ 78';. $X?G M;*<L)H7 'JGK$E\XBDYC[/MXYI$>YMCF 2.GA/%A=?)QU,NLSXX$ 8UB'L8\ M6\FGV.,T](ISDZ2>_0;M"6^%["*(KQM'/%A]A#U;9ISF?LP'ZI$QYADB^^\\ MPGBT_U5 TW[4V4;TIK;D/.SH^F:ST3:6%K"%;AH&TG]_&MK.DJRP2GW8-%B, M6F;EOFTE!]7WH_;(',.<Y#H=?TG:,=QE0:H"1@B@A>\)=FGPD05Q6 "HSV_- M:UW\7.N5K*Y'B<\? K:*/6P3SD$OV=[]??'#MG<%_]U=77R/ W[UDASNY*.3 M_""MD31^/6&+":3</P[@GX?F/X=F<B3@0$QBOQC'A<>OCO+.?F0C:2B@DL % MBQ2(^5Q%S:3]X6+!KW*1@:MTE($_#VS"*/;H7U@<H7N\R"DA,7^W'-)(#IIX MGWW".HY14424JR\\70U0.77@I(=1D9<PQ7R>\8H(5+21Z-3SO>4V7<S)(F [ MP1!'6'^<3L>9;1X]M>_.%_N#)0C=SBO=BH3T*GRHTR5(;;&$8_S%' >@>8UM MY])SP:X\,,+V@;O183*'WE.K7BSGJNB5\.,F%>\9COT61X0QFGT5&7=-HG.L M1[I8>O"/5[*RO,H'D#,YG5/"!--QG<9LYKAJ@S@SM8XN9^K,1$1%K99A$--% MIM60:U+EX'0H$%%>'_")4*,IG>2@4[O/$6'VH"= 6T5J0S61:AH-$R%D&::* MS!:T#:.%X+35Z_5+=&FUU+;5:+;KTGG.OC0H4#;CQ!WY@F$:J*TB&* U16:G MWNR8+:UMU9%9O_S%,#J&L8_WR*K";P"W-S 4.,@=GWKI8>1P-Z;GM&)3DG3X MA)TE]<E^8>S!\&4\?!G8DYYM)'HLY;WA[LYUQ84NF,C03*NEP4)JR+(.=G/2 M-CH=JX[KG6;;,CIXYC8ZIM7^$9G'*4RO\GP:PV#[3/@F8-_VR1M8;2C+--" MAAJF=%=&.N-J0CR"(SGIP78(QUYI:\A0^G?'SG*T,\YR.022W(+AE2)21*3\ MM&TW?WX=0)7VFHSR*N)6^W?JY]"%[%0(O3JG#+83$D(:(BPW/4MKB?JTT4Z] ME%#*C_;G)]O!'DGV,95EH?_4T%[GX$\S2.7"[*BW5,JR<CD1JS1^SP61NTA( M!#5%- K%35<AE6[@>9#;1)DG[P3",6R$FPCN&*LT'A+,?.**RU7PYJ+\RSLH MX)5^'KQ@(PN6J-3-,5SI!7*D8,I"41!E!LBY*>+G'*5/@W.^BI1J=U"W!T[@ M#7Q0W!P[I-QC*:O2Z22(.9E@?U'NK0"7N5F%(H],,[D4E[X,K]+E6;TENG1W MOE MO,=*;LDCRHLH!$](V=&KJ.8$.ZF\LU?<?WA 9H6Y>,#XWDY^(]$QI/XW MXAX*]X.-GBKAT(I*<?'0O;V60E9\N$9N:M);+??"KAWCR5NGI@3,)4R^A; # MPHB&9$V\_:-4EQ;PXO57X?GG+A#2.D*^:7+O70%U W].%S'#^1>F6/4(0 = MN1_I]QJS),;DBA7VZ66+9;UT>@F[)'(8E0I)P5PY#%[A<O/@9MN78V*WTX'R <X[ID_89!CJ'G(_^_VI#F8I[B)_L3R.V_9+6?IP end </svConfiguration> <svRestConfiguration type="str">(dp1 S'HTTP Server Per URL' p2 ccopy_reg _reconstructor p3 (cLib.Rest.ixPersistentStatSource ixConfiguredStatsList p4 c__builtin__ list p5 (lp6 g3 (cLib.Rest.ixPersistentStatSource ixConfiguredStat p7 c__builtin__ object p8 NtRp9 (dp10 S'proxyPropertyList' p11 NsS'_objectID' p12 I0 sS'enabled' p13 I01 sS'filterList' p14 g3 (cLib.Rest.ixPersistentStatSource ixRestFilters p15 g8 NtRp16 (dp17 S'cardFilters' p18 g3 (cLib.Rest.ixPersistentStatSource ixCardFilterList p19 g5 (ltRp20 (dp21 g12 I-1 sS'_resourceLocked' p22 I00 sg11 NsbsS'activityFilters' p23 g3 (cLib.Rest.ixPersistentStatSource ixActivityFilterList p24 g5 (ltRp25 (dp26 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sS'chassisFilters' p27 g3 (cLib.Rest.ixPersistentStatSource ixChassisFilterList p28 g5 (ltRp29 (dp30 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sS'portFilters' p31 g3 (cLib.Rest.ixPersistentStatSource ixPortFilterList p32 g5 (ltRp33 (dp34 g12 I-1 sg22 I00 sg11 NsbsbsS'caption' p35 S'HTTP Requests Received' p36 sg22 I00 sS'aggregationType' p37 S'kSum' p38 sS'statName' p39 g36 sbag3 (g7 g8 NtRp40 (dp41 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp42 (dp43 g18 g3 (g19 g5 (ltRp44 (dp45 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp46 (dp47 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp48 (dp49 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp50 (dp51 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp53 (dp54 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp55 (dp56 g18 g3 (g19 g5 (ltRp57 (dp58 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp59 (dp60 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp61 (dp62 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp63 (dp64 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp66 (dp67 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp68 (dp69 g18 g3 (g19 g5 (ltRp70 (dp71 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp72 (dp73 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp74 (dp75 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp76 (dp77 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (50x)' p78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp79 (dp80 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp81 (dp82 g18 g3 (g19 g5 (ltRp83 (dp84 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp85 (dp86 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp87 (dp88 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp89 (dp90 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write Error)' p91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp92 (dp93 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp94 (dp95 g18 g3 (g19 g5 (ltRp96 (dp97 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp98 (dp99 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp100 (dp101 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp102 (dp103 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent' p104 sg22 I00 sg37 g38 sg39 g104 sbag3 (g7 g8 NtRp105 (dp106 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp107 (dp108 g18 g3 (g19 g5 (ltRp109 (dp110 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp111 (dp112 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp113 (dp114 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp115 (dp116 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (1xx)' p117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp118 (dp119 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp120 (dp121 g18 g3 (g19 g5 (ltRp122 (dp123 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp124 (dp125 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp126 (dp127 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp128 (dp129 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (2xx)' p130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp131 (dp132 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp133 (dp134 g18 g3 (g19 g5 (ltRp135 (dp136 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp137 (dp138 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp139 (dp140 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp141 (dp142 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (3xx)' p143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp144 (dp145 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp146 (dp147 g18 g3 (g19 g5 (ltRp148 (dp149 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp150 (dp151 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp152 (dp153 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp154 (dp155 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (4xx)' p156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp157 (dp158 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp159 (dp160 g18 g3 (g19 g5 (ltRp161 (dp162 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp163 (dp164 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp165 (dp166 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp167 (dp168 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (5xx)' p169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp170 (dp171 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp172 (dp173 g18 g3 (g19 g5 (ltRp174 (dp175 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp176 (dp177 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp178 (dp179 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp180 (dp181 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (Other)' p182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp183 (dp184 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp185 (dp186 g18 g3 (g19 g5 (ltRp187 (dp188 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp189 (dp190 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp191 (dp192 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp193 (dp194 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Write Error)' p195 sg22 I00 sg37 g38 sg39 g195 sbag3 (g7 g8 NtRp196 (dp197 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp198 (dp199 g18 g3 (g19 g5 (ltRp200 (dp201 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp202 (dp203 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp204 (dp205 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp206 (dp207 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Aborted)' p208 sg22 I00 sg37 g38 sg39 g208 sbag3 (g7 g8 NtRp209 (dp210 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp211 (dp212 g18 g3 (g19 g5 (ltRp213 (dp214 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp215 (dp216 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp217 (dp218 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp219 (dp220 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Other)' p221 sg22 I00 sg37 g38 sg39 g221 sbag3 (g7 g8 NtRp222 (dp223 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp224 (dp225 g18 g3 (g19 g5 (ltRp226 (dp227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp228 (dp229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp230 (dp231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp232 (dp233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Sent' p234 sg22 I00 sg37 g38 sg39 g234 sbag3 (g7 g8 NtRp235 (dp236 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp237 (dp238 g18 g3 (g19 g5 (ltRp239 (dp240 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp241 (dp242 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp243 (dp244 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp245 (dp246 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp248 (dp249 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp250 (dp251 g18 g3 (g19 g5 (ltRp252 (dp253 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp254 (dp255 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp256 (dp257 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp258 (dp259 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p260 sg22 I00 sg37 S'kWeightedAverage' p261 sg39 g260 sbag3 (g7 g8 NtRp262 (dp263 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp264 (dp265 g18 g3 (g19 g5 (ltRp266 (dp267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp268 (dp269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp270 (dp271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp272 (dp273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p274 sg22 I00 sg37 g261 sg39 g274 sbag3 (g7 g8 NtRp275 (dp276 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp277 (dp278 g18 g3 (g19 g5 (ltRp279 (dp280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp281 (dp282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp283 (dp284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp285 (dp286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Received' p287 sg22 I00 sg37 g38 sg39 g287 sbag3 (g7 g8 NtRp288 (dp289 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp290 (dp291 g18 g3 (g19 g5 (ltRp292 (dp293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp294 (dp295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp296 (dp297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp298 (dp299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp301 (dp302 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp303 (dp304 g18 g3 (g19 g5 (ltRp305 (dp306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp307 (dp308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp309 (dp310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp311 (dp312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Received Chunk Size' p313 sg22 I00 sg37 g261 sg39 g313 sbag3 (g7 g8 NtRp314 (dp315 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp316 (dp317 g18 g3 (g19 g5 (ltRp318 (dp319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp320 (dp321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp322 (dp323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp324 (dp325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p326 sg22 I00 sg37 g261 sg39 g326 sbag3 (g7 g8 NtRp327 (dp328 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp329 (dp330 g18 g3 (g19 g5 (ltRp331 (dp332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp333 (dp334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp335 (dp336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp337 (dp338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Received' p339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp340 (dp341 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp342 (dp343 g18 g3 (g19 g5 (ltRp344 (dp345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp346 (dp347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp348 (dp349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp350 (dp351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Successful' p352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp353 (dp354 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp355 (dp356 g18 g3 (g19 g5 (ltRp357 (dp358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp359 (dp360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp361 (dp362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp363 (dp364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Failed' p365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp366 (dp367 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp368 (dp369 g18 g3 (g19 g5 (ltRp370 (dp371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp372 (dp373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp374 (dp375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp376 (dp377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Request Received' p378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp379 (dp380 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp381 (dp382 g18 g3 (g19 g5 (ltRp383 (dp384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp385 (dp386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp387 (dp388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp389 (dp390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Response Sent' p391 sg22 I00 sg37 g38 sg39 g391 sbatRp392 (dp393 g12 I27 sg22 I00 sg11 NsbsS'HTTP Server' p394 g3 (g4 g5 (lp395 g3 (g7 g8 NtRp396 (dp397 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp398 (dp399 g18 g3 (g19 g5 (ltRp400 (dp401 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp402 (dp403 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp404 (dp405 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp406 (dp407 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g36 sg22 I00 sg37 g38 sg39 g36 sbag3 (g7 g8 NtRp408 (dp409 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp410 (dp411 g18 g3 (g19 g5 (ltRp412 (dp413 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp414 (dp415 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp416 (dp417 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp418 (dp419 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp420 (dp421 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp422 (dp423 g18 g3 (g19 g5 (ltRp424 (dp425 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp426 (dp427 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp428 (dp429 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp430 (dp431 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p432 sg22 I00 sg37 g38 sg39 g432 sbag3 (g7 g8 NtRp433 (dp434 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp435 (dp436 g18 g3 (g19 g5 (ltRp437 (dp438 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp439 (dp440 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp441 (dp442 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp443 (dp444 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp445 (dp446 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp447 (dp448 g18 g3 (g19 g5 (ltRp449 (dp450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp451 (dp452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp453 (dp454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp455 (dp456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp457 (dp458 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp459 (dp460 g18 g3 (g19 g5 (ltRp461 (dp462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp463 (dp464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp465 (dp466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp467 (dp468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp469 (dp470 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp471 (dp472 g18 g3 (g19 g5 (ltRp473 (dp474 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp475 (dp476 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp477 (dp478 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp479 (dp480 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p481 sg22 I00 sg37 g38 sg39 g481 sbag3 (g7 g8 NtRp482 (dp483 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp484 (dp485 g18 g3 (g19 g5 (ltRp486 (dp487 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp488 (dp489 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp490 (dp491 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp492 (dp493 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p494 sg22 I00 sg37 g38 sg39 g494 sbag3 (g7 g8 NtRp495 (dp496 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp497 (dp498 g18 g3 (g19 g5 (ltRp499 (dp500 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp501 (dp502 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp503 (dp504 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp505 (dp506 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p507 sg22 I00 sg37 g38 sg39 g507 sbag3 (g7 g8 NtRp508 (dp509 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp510 (dp511 g18 g3 (g19 g5 (ltRp512 (dp513 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp514 (dp515 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp516 (dp517 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp518 (dp519 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp520 (dp521 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp522 (dp523 g18 g3 (g19 g5 (ltRp524 (dp525 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp526 (dp527 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp528 (dp529 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp530 (dp531 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp532 (dp533 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp534 (dp535 g18 g3 (g19 g5 (ltRp536 (dp537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp538 (dp539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp540 (dp541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp542 (dp543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp544 (dp545 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp546 (dp547 g18 g3 (g19 g5 (ltRp548 (dp549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp550 (dp551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp552 (dp553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp554 (dp555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp556 (dp557 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp558 (dp559 g18 g3 (g19 g5 (ltRp560 (dp561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp562 (dp563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp564 (dp565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp566 (dp567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp568 (dp569 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp570 (dp571 g18 g3 (g19 g5 (ltRp572 (dp573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp574 (dp575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp576 (dp577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp578 (dp579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp580 (dp581 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp582 (dp583 g18 g3 (g19 g5 (ltRp584 (dp585 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp586 (dp587 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp588 (dp589 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp590 (dp591 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p592 sg22 I00 sg37 g38 sg39 g592 sbag3 (g7 g8 NtRp593 (dp594 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp595 (dp596 g18 g3 (g19 g5 (ltRp597 (dp598 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp599 (dp600 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp601 (dp602 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp603 (dp604 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p605 sg22 I00 sg37 g38 sg39 g605 sbag3 (g7 g8 NtRp606 (dp607 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp608 (dp609 g18 g3 (g19 g5 (ltRp610 (dp611 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp612 (dp613 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp614 (dp615 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp616 (dp617 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p618 sg22 I00 sg37 g38 sg39 g618 sbag3 (g7 g8 NtRp619 (dp620 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp621 (dp622 g18 g3 (g19 g5 (ltRp623 (dp624 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp625 (dp626 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp627 (dp628 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp629 (dp630 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p631 sg22 I00 sg37 g38 sg39 g631 sbag3 (g7 g8 NtRp632 (dp633 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp634 (dp635 g18 g3 (g19 g5 (ltRp636 (dp637 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp638 (dp639 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp640 (dp641 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp642 (dp643 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p644 sg22 I00 sg37 g38 sg39 g644 sbag3 (g7 g8 NtRp645 (dp646 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp647 (dp648 g18 g3 (g19 g5 (ltRp649 (dp650 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp651 (dp652 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp653 (dp654 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp655 (dp656 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p657 sg22 I00 sg37 g38 sg39 g657 sbag3 (g7 g8 NtRp658 (dp659 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp660 (dp661 g18 g3 (g19 g5 (ltRp662 (dp663 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp664 (dp665 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp666 (dp667 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp668 (dp669 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Matching ServerID' p670 sg22 I00 sg37 g38 sg39 g670 sbag3 (g7 g8 NtRp671 (dp672 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp673 (dp674 g18 g3 (g19 g5 (ltRp675 (dp676 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp677 (dp678 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp679 (dp680 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp681 (dp682 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Non-matching ServerID' p683 sg22 I00 sg37 g38 sg39 g683 sbag3 (g7 g8 NtRp684 (dp685 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp686 (dp687 g18 g3 (g19 g5 (ltRp688 (dp689 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp690 (dp691 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp692 (dp693 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp694 (dp695 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Encoded Responses Sent' p696 sg22 I00 sg37 g38 sg39 g696 sbag3 (g7 g8 NtRp697 (dp698 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp699 (dp700 g18 g3 (g19 g5 (ltRp701 (dp702 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp703 (dp704 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp705 (dp706 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp707 (dp708 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp709 (dp710 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp711 (dp712 g18 g3 (g19 g5 (ltRp713 (dp714 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp715 (dp716 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp717 (dp718 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp719 (dp720 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Transfer-Encoded Requests Received' p721 sg22 I00 sg37 g38 sg39 g721 sbag3 (g7 g8 NtRp722 (dp723 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp724 (dp725 g18 g3 (g19 g5 (ltRp726 (dp727 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp728 (dp729 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp730 (dp731 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp732 (dp733 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp734 (dp735 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp736 (dp737 g18 g3 (g19 g5 (ltRp738 (dp739 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp740 (dp741 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp742 (dp743 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp744 (dp745 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp746 (dp747 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp748 (dp749 g18 g3 (g19 g5 (ltRp750 (dp751 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp752 (dp753 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp754 (dp755 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp756 (dp757 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp758 (dp759 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp760 (dp761 g18 g3 (g19 g5 (ltRp762 (dp763 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp764 (dp765 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp766 (dp767 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp768 (dp769 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp770 (dp771 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp772 (dp773 g18 g3 (g19 g5 (ltRp774 (dp775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp776 (dp777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp778 (dp779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp780 (dp781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp782 (dp783 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp784 (dp785 g18 g3 (g19 g5 (ltRp786 (dp787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp788 (dp789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp790 (dp791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp792 (dp793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g391 sg22 I00 sg37 g38 sg39 g391 sbag3 (g7 g8 NtRp794 (dp795 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp796 (dp797 g18 g3 (g19 g5 (ltRp798 (dp799 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp800 (dp801 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp802 (dp803 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp804 (dp805 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Sent' p806 sg22 I00 sg37 g38 sg39 g806 sbag3 (g7 g8 NtRp807 (dp808 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp809 (dp810 g18 g3 (g19 g5 (ltRp811 (dp812 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp813 (dp814 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp815 (dp816 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp817 (dp818 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Sent' p819 sg22 I00 sg37 g38 sg39 g819 sbag3 (g7 g8 NtRp820 (dp821 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp822 (dp823 g18 g3 (g19 g5 (ltRp824 (dp825 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp826 (dp827 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp828 (dp829 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp830 (dp831 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Sent' p832 sg22 I00 sg37 g38 sg39 g832 sbag3 (g7 g8 NtRp833 (dp834 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp835 (dp836 g18 g3 (g19 g5 (ltRp837 (dp838 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp839 (dp840 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp841 (dp842 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp843 (dp844 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Sent' p845 sg22 I00 sg37 g38 sg39 g845 sbag3 (g7 g8 NtRp846 (dp847 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp848 (dp849 g18 g3 (g19 g5 (ltRp850 (dp851 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp852 (dp853 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp854 (dp855 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp856 (dp857 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Sent' p858 sg22 I00 sg37 g38 sg39 g858 sbag3 (g7 g8 NtRp859 (dp860 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp861 (dp862 g18 g3 (g19 g5 (ltRp863 (dp864 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp865 (dp866 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp867 (dp868 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp869 (dp870 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Sent' p871 sg22 I00 sg37 g38 sg39 g871 sbag3 (g7 g8 NtRp872 (dp873 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp874 (dp875 g18 g3 (g19 g5 (ltRp876 (dp877 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp878 (dp879 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp880 (dp881 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp882 (dp883 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Sent' p884 sg22 I00 sg37 g38 sg39 g884 sbag3 (g7 g8 NtRp885 (dp886 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp887 (dp888 g18 g3 (g19 g5 (ltRp889 (dp890 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp891 (dp892 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp893 (dp894 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp895 (dp896 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Sent' p897 sg22 I00 sg37 g38 sg39 g897 sbag3 (g7 g8 NtRp898 (dp899 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp900 (dp901 g18 g3 (g19 g5 (ltRp902 (dp903 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp904 (dp905 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp906 (dp907 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp908 (dp909 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Sent' p910 sg22 I00 sg37 g38 sg39 g910 sbag3 (g7 g8 NtRp911 (dp912 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp913 (dp914 g18 g3 (g19 g5 (ltRp915 (dp916 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp917 (dp918 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp919 (dp920 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp921 (dp922 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Sent' p923 sg22 I00 sg37 g38 sg39 g923 sbag3 (g7 g8 NtRp924 (dp925 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp926 (dp927 g18 g3 (g19 g5 (ltRp928 (dp929 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp930 (dp931 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp932 (dp933 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp934 (dp935 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Received' p936 sg22 I00 sg37 g38 sg39 g936 sbag3 (g7 g8 NtRp937 (dp938 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp939 (dp940 g18 g3 (g19 g5 (ltRp941 (dp942 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp943 (dp944 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp945 (dp946 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp947 (dp948 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Received' p949 sg22 I00 sg37 g38 sg39 g949 sbag3 (g7 g8 NtRp950 (dp951 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp952 (dp953 g18 g3 (g19 g5 (ltRp954 (dp955 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp956 (dp957 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp958 (dp959 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp960 (dp961 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Received' p962 sg22 I00 sg37 g38 sg39 g962 sbag3 (g7 g8 NtRp963 (dp964 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp965 (dp966 g18 g3 (g19 g5 (ltRp967 (dp968 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp969 (dp970 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp971 (dp972 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp973 (dp974 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Received' p975 sg22 I00 sg37 g38 sg39 g975 sbag3 (g7 g8 NtRp976 (dp977 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp978 (dp979 g18 g3 (g19 g5 (ltRp980 (dp981 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp982 (dp983 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp984 (dp985 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp986 (dp987 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Received' p988 sg22 I00 sg37 g38 sg39 g988 sbag3 (g7 g8 NtRp989 (dp990 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp991 (dp992 g18 g3 (g19 g5 (ltRp993 (dp994 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp995 (dp996 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp997 (dp998 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp999 (dp1000 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Received' p1001 sg22 I00 sg37 g38 sg39 g1001 sbag3 (g7 g8 NtRp1002 (dp1003 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp1004 (dp1005 g18 g3 (g19 g5 (ltRp1006 (dp1007 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1008 (dp1009 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1010 (dp1011 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1012 (dp1013 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Received' p1014 sg22 I00 sg37 g38 sg39 g1014 sbag3 (g7 g8 NtRp1015 (dp1016 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp1017 (dp1018 g18 g3 (g19 g5 (ltRp1019 (dp1020 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1021 (dp1022 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1023 (dp1024 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1025 (dp1026 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Received' p1027 sg22 I00 sg37 g38 sg39 g1027 sbag3 (g7 g8 NtRp1028 (dp1029 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp1030 (dp1031 g18 g3 (g19 g5 (ltRp1032 (dp1033 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1034 (dp1035 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1036 (dp1037 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1038 (dp1039 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Received' p1040 sg22 I00 sg37 g38 sg39 g1040 sbag3 (g7 g8 NtRp1041 (dp1042 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp1043 (dp1044 g18 g3 (g19 g5 (ltRp1045 (dp1046 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1047 (dp1048 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1049 (dp1050 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1051 (dp1052 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Received' p1053 sg22 I00 sg37 g38 sg39 g1053 sbag3 (g7 g8 NtRp1054 (dp1055 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp1056 (dp1057 g18 g3 (g19 g5 (ltRp1058 (dp1059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1060 (dp1061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1062 (dp1063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1064 (dp1065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Client' p1066 sg22 I00 sg37 g38 sg39 g1066 sbag3 (g7 g8 NtRp1067 (dp1068 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp1069 (dp1070 g18 g3 (g19 g5 (ltRp1071 (dp1072 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1073 (dp1074 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1075 (dp1076 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1077 (dp1078 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Server' p1079 sg22 I00 sg37 g38 sg39 g1079 sbag3 (g7 g8 NtRp1080 (dp1081 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp1082 (dp1083 g18 g3 (g19 g5 (ltRp1084 (dp1085 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1086 (dp1087 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1088 (dp1089 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1090 (dp1091 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Client to Server' p1092 sg22 I00 sg37 g38 sg39 g1092 sbag3 (g7 g8 NtRp1093 (dp1094 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp1095 (dp1096 g18 g3 (g19 g5 (ltRp1097 (dp1098 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1099 (dp1100 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1101 (dp1102 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1103 (dp1104 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Server to Client' p1105 sg22 I00 sg37 g38 sg39 g1105 sbag3 (g7 g8 NtRp1106 (dp1107 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp1108 (dp1109 g18 g3 (g19 g5 (ltRp1110 (dp1111 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1112 (dp1113 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1114 (dp1115 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1116 (dp1117 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Client to Server' p1118 sg22 I00 sg37 g38 sg39 g1118 sbag3 (g7 g8 NtRp1119 (dp1120 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp1121 (dp1122 g18 g3 (g19 g5 (ltRp1123 (dp1124 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1125 (dp1126 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1127 (dp1128 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1129 (dp1130 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Server to Client' p1131 sg22 I00 sg37 g38 sg39 g1131 sbag3 (g7 g8 NtRp1132 (dp1133 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp1134 (dp1135 g18 g3 (g19 g5 (ltRp1136 (dp1137 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1138 (dp1139 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1140 (dp1141 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1142 (dp1143 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Succeeded' p1144 sg22 I00 sg37 g38 sg39 g1144 sbag3 (g7 g8 NtRp1145 (dp1146 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp1147 (dp1148 g18 g3 (g19 g5 (ltRp1149 (dp1150 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1151 (dp1152 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1153 (dp1154 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1155 (dp1156 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Failed' p1157 sg22 I00 sg37 g38 sg39 g1157 sbag3 (g7 g8 NtRp1158 (dp1159 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp1160 (dp1161 g18 g3 (g19 g5 (ltRp1162 (dp1163 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1164 (dp1165 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1166 (dp1167 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1168 (dp1169 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Protocol Error' p1170 sg22 I00 sg37 g38 sg39 g1170 sbag3 (g7 g8 NtRp1171 (dp1172 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp1173 (dp1174 g18 g3 (g19 g5 (ltRp1175 (dp1176 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1177 (dp1178 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1179 (dp1180 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1181 (dp1182 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Internal Error' p1183 sg22 I00 sg37 g38 sg39 g1183 sbag3 (g7 g8 NtRp1184 (dp1185 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp1186 (dp1187 g18 g3 (g19 g5 (ltRp1188 (dp1189 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1190 (dp1191 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1192 (dp1193 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1194 (dp1195 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Flow Control Error' p1196 sg22 I00 sg37 g38 sg39 g1196 sbag3 (g7 g8 NtRp1197 (dp1198 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp1199 (dp1200 g18 g3 (g19 g5 (ltRp1201 (dp1202 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1203 (dp1204 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1205 (dp1206 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1207 (dp1208 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Settings Timeout Error' p1209 sg22 I00 sg37 g38 sg39 g1209 sbag3 (g7 g8 NtRp1210 (dp1211 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp1212 (dp1213 g18 g3 (g19 g5 (ltRp1214 (dp1215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1216 (dp1217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1218 (dp1219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1220 (dp1221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Closed Error' p1222 sg22 I00 sg37 g38 sg39 g1222 sbag3 (g7 g8 NtRp1223 (dp1224 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp1225 (dp1226 g18 g3 (g19 g5 (ltRp1227 (dp1228 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1229 (dp1230 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1231 (dp1232 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1233 (dp1234 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Frame Size Error' p1235 sg22 I00 sg37 g38 sg39 g1235 sbag3 (g7 g8 NtRp1236 (dp1237 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp1238 (dp1239 g18 g3 (g19 g5 (ltRp1240 (dp1241 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1242 (dp1243 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1244 (dp1245 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1246 (dp1247 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Refused Stream Error' p1248 sg22 I00 sg37 g38 sg39 g1248 sbag3 (g7 g8 NtRp1249 (dp1250 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp1251 (dp1252 g18 g3 (g19 g5 (ltRp1253 (dp1254 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1255 (dp1256 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1257 (dp1258 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1259 (dp1260 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Cancelled Error' p1261 sg22 I00 sg37 g38 sg39 g1261 sbag3 (g7 g8 NtRp1262 (dp1263 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp1264 (dp1265 g18 g3 (g19 g5 (ltRp1266 (dp1267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1268 (dp1269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1270 (dp1271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1272 (dp1273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Compression Error' p1274 sg22 I00 sg37 g38 sg39 g1274 sbag3 (g7 g8 NtRp1275 (dp1276 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp1277 (dp1278 g18 g3 (g19 g5 (ltRp1279 (dp1280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1281 (dp1282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1283 (dp1284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1285 (dp1286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connect Error' p1287 sg22 I00 sg37 g38 sg39 g1287 sbag3 (g7 g8 NtRp1288 (dp1289 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp1290 (dp1291 g18 g3 (g19 g5 (ltRp1292 (dp1293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1294 (dp1295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1296 (dp1297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1298 (dp1299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Enhance Calm Error' p1300 sg22 I00 sg37 g38 sg39 g1300 sbag3 (g7 g8 NtRp1301 (dp1302 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp1303 (dp1304 g18 g3 (g19 g5 (ltRp1305 (dp1306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1307 (dp1308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1309 (dp1310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1311 (dp1312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Inadequate Security Error' p1313 sg22 I00 sg37 g38 sg39 g1313 sbag3 (g7 g8 NtRp1314 (dp1315 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp1316 (dp1317 g18 g3 (g19 g5 (ltRp1318 (dp1319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1320 (dp1321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1322 (dp1323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1324 (dp1325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HTTP1.1 Required Error' p1326 sg22 I00 sg37 g38 sg39 g1326 sbag3 (g7 g8 NtRp1327 (dp1328 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp1329 (dp1330 g18 g3 (g19 g5 (ltRp1331 (dp1332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1333 (dp1334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1335 (dp1336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1337 (dp1338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p1339 sg22 I00 sg37 g38 sg39 g1339 sbag3 (g7 g8 NtRp1340 (dp1341 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp1342 (dp1343 g18 g3 (g19 g5 (ltRp1344 (dp1345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1346 (dp1347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1348 (dp1349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1350 (dp1351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p1352 sg22 I00 sg37 g38 sg39 g1352 sbag3 (g7 g8 NtRp1353 (dp1354 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp1355 (dp1356 g18 g3 (g19 g5 (ltRp1357 (dp1358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1359 (dp1360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1361 (dp1362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1363 (dp1364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p1365 sg22 I00 sg37 g38 sg39 g1365 sbag3 (g7 g8 NtRp1366 (dp1367 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp1368 (dp1369 g18 g3 (g19 g5 (ltRp1370 (dp1371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1372 (dp1373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1374 (dp1375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1376 (dp1377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p1378 sg22 I00 sg37 g38 sg39 g1378 sbag3 (g7 g8 NtRp1379 (dp1380 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp1381 (dp1382 g18 g3 (g19 g5 (ltRp1383 (dp1384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1385 (dp1386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1387 (dp1388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1389 (dp1390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p1391 sg22 I00 sg37 g38 sg39 g1391 sbag3 (g7 g8 NtRp1392 (dp1393 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp1394 (dp1395 g18 g3 (g19 g5 (ltRp1396 (dp1397 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1398 (dp1399 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1400 (dp1401 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1402 (dp1403 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p1404 sg22 I00 sg37 g38 sg39 g1404 sbag3 (g7 g8 NtRp1405 (dp1406 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp1407 (dp1408 g18 g3 (g19 g5 (ltRp1409 (dp1410 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1411 (dp1412 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1413 (dp1414 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1415 (dp1416 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p1417 sg22 I00 sg37 g38 sg39 g1417 sbag3 (g7 g8 NtRp1418 (dp1419 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp1420 (dp1421 g18 g3 (g19 g5 (ltRp1422 (dp1423 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1424 (dp1425 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1426 (dp1427 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1428 (dp1429 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p1430 sg22 I00 sg37 g38 sg39 g1430 sbag3 (g7 g8 NtRp1431 (dp1432 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp1433 (dp1434 g18 g3 (g19 g5 (ltRp1435 (dp1436 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1437 (dp1438 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1439 (dp1440 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1441 (dp1442 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p1443 sg22 I00 sg37 g38 sg39 g1443 sbag3 (g7 g8 NtRp1444 (dp1445 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp1446 (dp1447 g18 g3 (g19 g5 (ltRp1448 (dp1449 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1450 (dp1451 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1452 (dp1453 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1454 (dp1455 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p1456 sg22 I00 sg37 g38 sg39 g1456 sbag3 (g7 g8 NtRp1457 (dp1458 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp1459 (dp1460 g18 g3 (g19 g5 (ltRp1461 (dp1462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1463 (dp1464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1465 (dp1466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1467 (dp1468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p1469 sg22 I00 sg37 g38 sg39 g1469 sbag3 (g7 g8 NtRp1470 (dp1471 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp1472 (dp1473 g18 g3 (g19 g5 (ltRp1474 (dp1475 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1476 (dp1477 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1478 (dp1479 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1480 (dp1481 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p1482 sg22 I00 sg37 g38 sg39 g1482 sbag3 (g7 g8 NtRp1483 (dp1484 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp1485 (dp1486 g18 g3 (g19 g5 (ltRp1487 (dp1488 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1489 (dp1490 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1491 (dp1492 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1493 (dp1494 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p1495 sg22 I00 sg37 g38 sg39 g1495 sbag3 (g7 g8 NtRp1496 (dp1497 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp1498 (dp1499 g18 g3 (g19 g5 (ltRp1500 (dp1501 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1502 (dp1503 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1504 (dp1505 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1506 (dp1507 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p1508 sg22 I00 sg37 g38 sg39 g1508 sbag3 (g7 g8 NtRp1509 (dp1510 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp1511 (dp1512 g18 g3 (g19 g5 (ltRp1513 (dp1514 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1515 (dp1516 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1517 (dp1518 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1519 (dp1520 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p1521 sg22 I00 sg37 g38 sg39 g1521 sbag3 (g7 g8 NtRp1522 (dp1523 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp1524 (dp1525 g18 g3 (g19 g5 (ltRp1526 (dp1527 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1528 (dp1529 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1530 (dp1531 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1532 (dp1533 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p1534 sg22 I00 sg37 g38 sg39 g1534 sbag3 (g7 g8 NtRp1535 (dp1536 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp1537 (dp1538 g18 g3 (g19 g5 (ltRp1539 (dp1540 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1541 (dp1542 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1543 (dp1544 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1545 (dp1546 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p1547 sg22 I00 sg37 g38 sg39 g1547 sbag3 (g7 g8 NtRp1548 (dp1549 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp1550 (dp1551 g18 g3 (g19 g5 (ltRp1552 (dp1553 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1554 (dp1555 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1556 (dp1557 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1558 (dp1559 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p1560 sg22 I00 sg37 g38 sg39 g1560 sbag3 (g7 g8 NtRp1561 (dp1562 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp1563 (dp1564 g18 g3 (g19 g5 (ltRp1565 (dp1566 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1567 (dp1568 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1569 (dp1570 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1571 (dp1572 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p1573 sg22 I00 sg37 g38 sg39 g1573 sbag3 (g7 g8 NtRp1574 (dp1575 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp1576 (dp1577 g18 g3 (g19 g5 (ltRp1578 (dp1579 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1580 (dp1581 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1582 (dp1583 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1584 (dp1585 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p1586 sg22 I00 sg37 g38 sg39 g1586 sbag3 (g7 g8 NtRp1587 (dp1588 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp1589 (dp1590 g18 g3 (g19 g5 (ltRp1591 (dp1592 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1593 (dp1594 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1595 (dp1596 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1597 (dp1598 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p1599 sg22 I00 sg37 g38 sg39 g1599 sbag3 (g7 g8 NtRp1600 (dp1601 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp1602 (dp1603 g18 g3 (g19 g5 (ltRp1604 (dp1605 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1606 (dp1607 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1608 (dp1609 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1610 (dp1611 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p1612 sg22 I00 sg37 g38 sg39 g1612 sbag3 (g7 g8 NtRp1613 (dp1614 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp1615 (dp1616 g18 g3 (g19 g5 (ltRp1617 (dp1618 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1619 (dp1620 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1621 (dp1622 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1623 (dp1624 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p1625 sg22 I00 sg37 g38 sg39 g1625 sbag3 (g7 g8 NtRp1626 (dp1627 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp1628 (dp1629 g18 g3 (g19 g5 (ltRp1630 (dp1631 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1632 (dp1633 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1634 (dp1635 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1636 (dp1637 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p1638 sg22 I00 sg37 g38 sg39 g1638 sbag3 (g7 g8 NtRp1639 (dp1640 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp1641 (dp1642 g18 g3 (g19 g5 (ltRp1643 (dp1644 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1645 (dp1646 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1647 (dp1648 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1649 (dp1650 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p1651 sg22 I00 sg37 g38 sg39 g1651 sbag3 (g7 g8 NtRp1652 (dp1653 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp1654 (dp1655 g18 g3 (g19 g5 (ltRp1656 (dp1657 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1658 (dp1659 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1660 (dp1661 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1662 (dp1663 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p1664 sg22 I00 sg37 g38 sg39 g1664 sbag3 (g7 g8 NtRp1665 (dp1666 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp1667 (dp1668 g18 g3 (g19 g5 (ltRp1669 (dp1670 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1671 (dp1672 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1673 (dp1674 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1675 (dp1676 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p1677 sg22 I00 sg37 g38 sg39 g1677 sbag3 (g7 g8 NtRp1678 (dp1679 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp1680 (dp1681 g18 g3 (g19 g5 (ltRp1682 (dp1683 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1684 (dp1685 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1686 (dp1687 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1688 (dp1689 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p1690 sg22 I00 sg37 g38 sg39 g1690 sbag3 (g7 g8 NtRp1691 (dp1692 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp1693 (dp1694 g18 g3 (g19 g5 (ltRp1695 (dp1696 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1697 (dp1698 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1699 (dp1700 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1701 (dp1702 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p1703 sg22 I00 sg37 g38 sg39 g1703 sbag3 (g7 g8 NtRp1704 (dp1705 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp1706 (dp1707 g18 g3 (g19 g5 (ltRp1708 (dp1709 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1710 (dp1711 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1712 (dp1713 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1714 (dp1715 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p1716 sg22 I00 sg37 g38 sg39 g1716 sbag3 (g7 g8 NtRp1717 (dp1718 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp1719 (dp1720 g18 g3 (g19 g5 (ltRp1721 (dp1722 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1723 (dp1724 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1725 (dp1726 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1727 (dp1728 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p1729 sg22 I00 sg37 g38 sg39 g1729 sbag3 (g7 g8 NtRp1730 (dp1731 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp1732 (dp1733 g18 g3 (g19 g5 (ltRp1734 (dp1735 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1736 (dp1737 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1738 (dp1739 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1740 (dp1741 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p1742 sg22 I00 sg37 g38 sg39 g1742 sbag3 (g7 g8 NtRp1743 (dp1744 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp1745 (dp1746 g18 g3 (g19 g5 (ltRp1747 (dp1748 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1749 (dp1750 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1751 (dp1752 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1753 (dp1754 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p1755 sg22 I00 sg37 g38 sg39 g1755 sbag3 (g7 g8 NtRp1756 (dp1757 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp1758 (dp1759 g18 g3 (g19 g5 (ltRp1760 (dp1761 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1762 (dp1763 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1764 (dp1765 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1766 (dp1767 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p1768 sg22 I00 sg37 g38 sg39 g1768 sbag3 (g7 g8 NtRp1769 (dp1770 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp1771 (dp1772 g18 g3 (g19 g5 (ltRp1773 (dp1774 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1775 (dp1776 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1777 (dp1778 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1779 (dp1780 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p1781 sg22 I00 sg37 g38 sg39 g1781 sbag3 (g7 g8 NtRp1782 (dp1783 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp1784 (dp1785 g18 g3 (g19 g5 (ltRp1786 (dp1787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1788 (dp1789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1790 (dp1791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1792 (dp1793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p1794 sg22 I00 sg37 g38 sg39 g1794 sbag3 (g7 g8 NtRp1795 (dp1796 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp1797 (dp1798 g18 g3 (g19 g5 (ltRp1799 (dp1800 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1801 (dp1802 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1803 (dp1804 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1805 (dp1806 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p1807 sg22 I00 sg37 g38 sg39 g1807 sbag3 (g7 g8 NtRp1808 (dp1809 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp1810 (dp1811 g18 g3 (g19 g5 (ltRp1812 (dp1813 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1814 (dp1815 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1816 (dp1817 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1818 (dp1819 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p1820 sg22 I00 sg37 g38 sg39 g1820 sbag3 (g7 g8 NtRp1821 (dp1822 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp1823 (dp1824 g18 g3 (g19 g5 (ltRp1825 (dp1826 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1827 (dp1828 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1829 (dp1830 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1831 (dp1832 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p1833 sg22 I00 sg37 g38 sg39 g1833 sbag3 (g7 g8 NtRp1834 (dp1835 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp1836 (dp1837 g18 g3 (g19 g5 (ltRp1838 (dp1839 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1840 (dp1841 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1842 (dp1843 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1844 (dp1845 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p1846 sg22 I00 sg37 g38 sg39 g1846 sbag3 (g7 g8 NtRp1847 (dp1848 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp1849 (dp1850 g18 g3 (g19 g5 (ltRp1851 (dp1852 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1853 (dp1854 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1855 (dp1856 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1857 (dp1858 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p1859 sg22 I00 sg37 g38 sg39 g1859 sbag3 (g7 g8 NtRp1860 (dp1861 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp1862 (dp1863 g18 g3 (g19 g5 (ltRp1864 (dp1865 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1866 (dp1867 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1868 (dp1869 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1870 (dp1871 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p1872 sg22 I00 sg37 g38 sg39 g1872 sbag3 (g7 g8 NtRp1873 (dp1874 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp1875 (dp1876 g18 g3 (g19 g5 (ltRp1877 (dp1878 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1879 (dp1880 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1881 (dp1882 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1883 (dp1884 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p1885 sg22 I00 sg37 g38 sg39 g1885 sbag3 (g7 g8 NtRp1886 (dp1887 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp1888 (dp1889 g18 g3 (g19 g5 (ltRp1890 (dp1891 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1892 (dp1893 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1894 (dp1895 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1896 (dp1897 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p1898 sg22 I00 sg37 g38 sg39 g1898 sbag3 (g7 g8 NtRp1899 (dp1900 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp1901 (dp1902 g18 g3 (g19 g5 (ltRp1903 (dp1904 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1905 (dp1906 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1907 (dp1908 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1909 (dp1910 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p1911 sg22 I00 sg37 g38 sg39 g1911 sbag3 (g7 g8 NtRp1912 (dp1913 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp1914 (dp1915 g18 g3 (g19 g5 (ltRp1916 (dp1917 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1918 (dp1919 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1920 (dp1921 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1922 (dp1923 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p1924 sg22 I00 sg37 g38 sg39 g1924 sbag3 (g7 g8 NtRp1925 (dp1926 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp1927 (dp1928 g18 g3 (g19 g5 (ltRp1929 (dp1930 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1931 (dp1932 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1933 (dp1934 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1935 (dp1936 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p1937 sg22 I00 sg37 g38 sg39 g1937 sbag3 (g7 g8 NtRp1938 (dp1939 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp1940 (dp1941 g18 g3 (g19 g5 (ltRp1942 (dp1943 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1944 (dp1945 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1946 (dp1947 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1948 (dp1949 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p1950 sg22 I00 sg37 g38 sg39 g1950 sbag3 (g7 g8 NtRp1951 (dp1952 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp1953 (dp1954 g18 g3 (g19 g5 (ltRp1955 (dp1956 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1957 (dp1958 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1959 (dp1960 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1961 (dp1962 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p1963 sg22 I00 sg37 g38 sg39 g1963 sbag3 (g7 g8 NtRp1964 (dp1965 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp1966 (dp1967 g18 g3 (g19 g5 (ltRp1968 (dp1969 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1970 (dp1971 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1972 (dp1973 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1974 (dp1975 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p1976 sg22 I00 sg37 g38 sg39 g1976 sbag3 (g7 g8 NtRp1977 (dp1978 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp1979 (dp1980 g18 g3 (g19 g5 (ltRp1981 (dp1982 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1983 (dp1984 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1985 (dp1986 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1987 (dp1988 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p1989 sg22 I00 sg37 g38 sg39 g1989 sbag3 (g7 g8 NtRp1990 (dp1991 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp1992 (dp1993 g18 g3 (g19 g5 (ltRp1994 (dp1995 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1996 (dp1997 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1998 (dp1999 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2000 (dp2001 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p2002 sg22 I00 sg37 g38 sg39 g2002 sbag3 (g7 g8 NtRp2003 (dp2004 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp2005 (dp2006 g18 g3 (g19 g5 (ltRp2007 (dp2008 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2009 (dp2010 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2011 (dp2012 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2013 (dp2014 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p2015 sg22 I00 sg37 g38 sg39 g2015 sbag3 (g7 g8 NtRp2016 (dp2017 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp2018 (dp2019 g18 g3 (g19 g5 (ltRp2020 (dp2021 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2022 (dp2023 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2024 (dp2025 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2026 (dp2027 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p2028 sg22 I00 sg37 g38 sg39 g2028 sbag3 (g7 g8 NtRp2029 (dp2030 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp2031 (dp2032 g18 g3 (g19 g5 (ltRp2033 (dp2034 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2035 (dp2036 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2037 (dp2038 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2039 (dp2040 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p2041 sg22 I00 sg37 g38 sg39 g2041 sbag3 (g7 g8 NtRp2042 (dp2043 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp2044 (dp2045 g18 g3 (g19 g5 (ltRp2046 (dp2047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2048 (dp2049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2050 (dp2051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2052 (dp2053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p2054 sg22 I00 sg37 g38 sg39 g2054 sbag3 (g7 g8 NtRp2055 (dp2056 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp2057 (dp2058 g18 g3 (g19 g5 (ltRp2059 (dp2060 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2061 (dp2062 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2063 (dp2064 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2065 (dp2066 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p2067 sg22 I00 sg37 g38 sg39 g2067 sbag3 (g7 g8 NtRp2068 (dp2069 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp2070 (dp2071 g18 g3 (g19 g5 (ltRp2072 (dp2073 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2074 (dp2075 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2076 (dp2077 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2078 (dp2079 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p2080 sg22 I00 sg37 g38 sg39 g2080 sbag3 (g7 g8 NtRp2081 (dp2082 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp2083 (dp2084 g18 g3 (g19 g5 (ltRp2085 (dp2086 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2087 (dp2088 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2089 (dp2090 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2091 (dp2092 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p2093 sg22 I00 sg37 g38 sg39 g2093 sbag3 (g7 g8 NtRp2094 (dp2095 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp2096 (dp2097 g18 g3 (g19 g5 (ltRp2098 (dp2099 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2100 (dp2101 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2102 (dp2103 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2104 (dp2105 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p2106 sg22 I00 sg37 g38 sg39 g2106 sbag3 (g7 g8 NtRp2107 (dp2108 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp2109 (dp2110 g18 g3 (g19 g5 (ltRp2111 (dp2112 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2113 (dp2114 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2115 (dp2116 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2117 (dp2118 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p2119 sg22 I00 sg37 g38 sg39 g2119 sbag3 (g7 g8 NtRp2120 (dp2121 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp2122 (dp2123 g18 g3 (g19 g5 (ltRp2124 (dp2125 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2126 (dp2127 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2128 (dp2129 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2130 (dp2131 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p2132 sg22 I00 sg37 g38 sg39 g2132 sbag3 (g7 g8 NtRp2133 (dp2134 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp2135 (dp2136 g18 g3 (g19 g5 (ltRp2137 (dp2138 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2139 (dp2140 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2141 (dp2142 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2143 (dp2144 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p2145 sg22 I00 sg37 g38 sg39 g2145 sbag3 (g7 g8 NtRp2146 (dp2147 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp2148 (dp2149 g18 g3 (g19 g5 (ltRp2150 (dp2151 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2152 (dp2153 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2154 (dp2155 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2156 (dp2157 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p2158 sg22 I00 sg37 g38 sg39 g2158 sbag3 (g7 g8 NtRp2159 (dp2160 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp2161 (dp2162 g18 g3 (g19 g5 (ltRp2163 (dp2164 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2165 (dp2166 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2167 (dp2168 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2169 (dp2170 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p2171 sg22 I00 sg37 g38 sg39 g2171 sbag3 (g7 g8 NtRp2172 (dp2173 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp2174 (dp2175 g18 g3 (g19 g5 (ltRp2176 (dp2177 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2178 (dp2179 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2180 (dp2181 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2182 (dp2183 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p2184 sg22 I00 sg37 g38 sg39 g2184 sbag3 (g7 g8 NtRp2185 (dp2186 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp2187 (dp2188 g18 g3 (g19 g5 (ltRp2189 (dp2190 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2191 (dp2192 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2193 (dp2194 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2195 (dp2196 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p2197 sg22 I00 sg37 g38 sg39 g2197 sbag3 (g7 g8 NtRp2198 (dp2199 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp2200 (dp2201 g18 g3 (g19 g5 (ltRp2202 (dp2203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2204 (dp2205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2206 (dp2207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2208 (dp2209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p2210 sg22 I00 sg37 g38 sg39 g2210 sbag3 (g7 g8 NtRp2211 (dp2212 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp2213 (dp2214 g18 g3 (g19 g5 (ltRp2215 (dp2216 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2217 (dp2218 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2219 (dp2220 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2221 (dp2222 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p2223 sg22 I00 sg37 g38 sg39 g2223 sbag3 (g7 g8 NtRp2224 (dp2225 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp2226 (dp2227 g18 g3 (g19 g5 (ltRp2228 (dp2229 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2230 (dp2231 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2232 (dp2233 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2234 (dp2235 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p2236 sg22 I00 sg37 g38 sg39 g2236 sbag3 (g7 g8 NtRp2237 (dp2238 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp2239 (dp2240 g18 g3 (g19 g5 (ltRp2241 (dp2242 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2243 (dp2244 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2245 (dp2246 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2247 (dp2248 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p2249 sg22 I00 sg37 g38 sg39 g2249 sbag3 (g7 g8 NtRp2250 (dp2251 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp2252 (dp2253 g18 g3 (g19 g5 (ltRp2254 (dp2255 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2256 (dp2257 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2258 (dp2259 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2260 (dp2261 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p2262 sg22 I00 sg37 g38 sg39 g2262 sbag3 (g7 g8 NtRp2263 (dp2264 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp2265 (dp2266 g18 g3 (g19 g5 (ltRp2267 (dp2268 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2269 (dp2270 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2271 (dp2272 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2273 (dp2274 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p2275 sg22 I00 sg37 g38 sg39 g2275 sbag3 (g7 g8 NtRp2276 (dp2277 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp2278 (dp2279 g18 g3 (g19 g5 (ltRp2280 (dp2281 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2282 (dp2283 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2284 (dp2285 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2286 (dp2287 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p2288 sg22 I00 sg37 g38 sg39 g2288 sbag3 (g7 g8 NtRp2289 (dp2290 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp2291 (dp2292 g18 g3 (g19 g5 (ltRp2293 (dp2294 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2295 (dp2296 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2297 (dp2298 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2299 (dp2300 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p2301 sg22 I00 sg37 g38 sg39 g2301 sbag3 (g7 g8 NtRp2302 (dp2303 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp2304 (dp2305 g18 g3 (g19 g5 (ltRp2306 (dp2307 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2308 (dp2309 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2310 (dp2311 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2312 (dp2313 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p2314 sg22 I00 sg37 g38 sg39 g2314 sbag3 (g7 g8 NtRp2315 (dp2316 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp2317 (dp2318 g18 g3 (g19 g5 (ltRp2319 (dp2320 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2321 (dp2322 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2323 (dp2324 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2325 (dp2326 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p2327 sg22 I00 sg37 g38 sg39 g2327 sbag3 (g7 g8 NtRp2328 (dp2329 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp2330 (dp2331 g18 g3 (g19 g5 (ltRp2332 (dp2333 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2334 (dp2335 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2336 (dp2337 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2338 (dp2339 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p2340 sg22 I00 sg37 g38 sg39 g2340 sbag3 (g7 g8 NtRp2341 (dp2342 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp2343 (dp2344 g18 g3 (g19 g5 (ltRp2345 (dp2346 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2347 (dp2348 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2349 (dp2350 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2351 (dp2352 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p2353 sg22 I00 sg37 g38 sg39 g2353 sbag3 (g7 g8 NtRp2354 (dp2355 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp2356 (dp2357 g18 g3 (g19 g5 (ltRp2358 (dp2359 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2360 (dp2361 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2362 (dp2363 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2364 (dp2365 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p2366 sg22 I00 sg37 g38 sg39 g2366 sbag3 (g7 g8 NtRp2367 (dp2368 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp2369 (dp2370 g18 g3 (g19 g5 (ltRp2371 (dp2372 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2373 (dp2374 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2375 (dp2376 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2377 (dp2378 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p2379 sg22 I00 sg37 g38 sg39 g2379 sbag3 (g7 g8 NtRp2380 (dp2381 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp2382 (dp2383 g18 g3 (g19 g5 (ltRp2384 (dp2385 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2386 (dp2387 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2388 (dp2389 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2390 (dp2391 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p2392 sg22 I00 sg37 g38 sg39 g2392 sbag3 (g7 g8 NtRp2393 (dp2394 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp2395 (dp2396 g18 g3 (g19 g5 (ltRp2397 (dp2398 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2399 (dp2400 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2401 (dp2402 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2403 (dp2404 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p2405 sg22 I00 sg37 g38 sg39 g2405 sbag3 (g7 g8 NtRp2406 (dp2407 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp2408 (dp2409 g18 g3 (g19 g5 (ltRp2410 (dp2411 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2412 (dp2413 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2414 (dp2415 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2416 (dp2417 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p2418 sg22 I00 sg37 g38 sg39 g2418 sbag3 (g7 g8 NtRp2419 (dp2420 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp2421 (dp2422 g18 g3 (g19 g5 (ltRp2423 (dp2424 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2425 (dp2426 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2427 (dp2428 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2429 (dp2430 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p2431 sg22 I00 sg37 g38 sg39 g2431 sbag3 (g7 g8 NtRp2432 (dp2433 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp2434 (dp2435 g18 g3 (g19 g5 (ltRp2436 (dp2437 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2438 (dp2439 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2440 (dp2441 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2442 (dp2443 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p2444 sg22 I00 sg37 g38 sg39 g2444 sbag3 (g7 g8 NtRp2445 (dp2446 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp2447 (dp2448 g18 g3 (g19 g5 (ltRp2449 (dp2450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2451 (dp2452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2453 (dp2454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2455 (dp2456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p2457 sg22 I00 sg37 g38 sg39 g2457 sbag3 (g7 g8 NtRp2458 (dp2459 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp2460 (dp2461 g18 g3 (g19 g5 (ltRp2462 (dp2463 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2464 (dp2465 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2466 (dp2467 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2468 (dp2469 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p2470 sg22 I00 sg37 g38 sg39 g2470 sbag3 (g7 g8 NtRp2471 (dp2472 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp2473 (dp2474 g18 g3 (g19 g5 (ltRp2475 (dp2476 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2477 (dp2478 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2479 (dp2480 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2481 (dp2482 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p2483 sg22 I00 sg37 g38 sg39 g2483 sbag3 (g7 g8 NtRp2484 (dp2485 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp2486 (dp2487 g18 g3 (g19 g5 (ltRp2488 (dp2489 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2490 (dp2491 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2492 (dp2493 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2494 (dp2495 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p2496 sg22 I00 sg37 g38 sg39 g2496 sbag3 (g7 g8 NtRp2497 (dp2498 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp2499 (dp2500 g18 g3 (g19 g5 (ltRp2501 (dp2502 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2503 (dp2504 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2505 (dp2506 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2507 (dp2508 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p2509 sg22 I00 sg37 g38 sg39 g2509 sbag3 (g7 g8 NtRp2510 (dp2511 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp2512 (dp2513 g18 g3 (g19 g5 (ltRp2514 (dp2515 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2516 (dp2517 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2518 (dp2519 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2520 (dp2521 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p2522 sg22 I00 sg37 g38 sg39 g2522 sbag3 (g7 g8 NtRp2523 (dp2524 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp2525 (dp2526 g18 g3 (g19 g5 (ltRp2527 (dp2528 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2529 (dp2530 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2531 (dp2532 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2533 (dp2534 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p2535 sg22 I00 sg37 g38 sg39 g2535 sbag3 (g7 g8 NtRp2536 (dp2537 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp2538 (dp2539 g18 g3 (g19 g5 (ltRp2540 (dp2541 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2542 (dp2543 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2544 (dp2545 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2546 (dp2547 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p2548 sg22 I00 sg37 g38 sg39 g2548 sbag3 (g7 g8 NtRp2549 (dp2550 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp2551 (dp2552 g18 g3 (g19 g5 (ltRp2553 (dp2554 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2555 (dp2556 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2557 (dp2558 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2559 (dp2560 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p2561 sg22 I00 sg37 g38 sg39 g2561 sbag3 (g7 g8 NtRp2562 (dp2563 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp2564 (dp2565 g18 g3 (g19 g5 (ltRp2566 (dp2567 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2568 (dp2569 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2570 (dp2571 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2572 (dp2573 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p2574 sg22 I00 sg37 g38 sg39 g2574 sbag3 (g7 g8 NtRp2575 (dp2576 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp2577 (dp2578 g18 g3 (g19 g5 (ltRp2579 (dp2580 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2581 (dp2582 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2583 (dp2584 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2585 (dp2586 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p2587 sg22 I00 sg37 g38 sg39 g2587 sbag3 (g7 g8 NtRp2588 (dp2589 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp2590 (dp2591 g18 g3 (g19 g5 (ltRp2592 (dp2593 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2594 (dp2595 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2596 (dp2597 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2598 (dp2599 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p2600 sg22 I00 sg37 g38 sg39 g2600 sbag3 (g7 g8 NtRp2601 (dp2602 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp2603 (dp2604 g18 g3 (g19 g5 (ltRp2605 (dp2606 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2607 (dp2608 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2609 (dp2610 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2611 (dp2612 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p2613 sg22 I00 sg37 g38 sg39 g2613 sbag3 (g7 g8 NtRp2614 (dp2615 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp2616 (dp2617 g18 g3 (g19 g5 (ltRp2618 (dp2619 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2620 (dp2621 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2622 (dp2623 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2624 (dp2625 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p2626 sg22 I00 sg37 g38 sg39 g2626 sbag3 (g7 g8 NtRp2627 (dp2628 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp2629 (dp2630 g18 g3 (g19 g5 (ltRp2631 (dp2632 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2633 (dp2634 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2635 (dp2636 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2637 (dp2638 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p2639 sg22 I00 sg37 g38 sg39 g2639 sbag3 (g7 g8 NtRp2640 (dp2641 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp2642 (dp2643 g18 g3 (g19 g5 (ltRp2644 (dp2645 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2646 (dp2647 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2648 (dp2649 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2650 (dp2651 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p2652 sg22 I00 sg37 g38 sg39 g2652 sbag3 (g7 g8 NtRp2653 (dp2654 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp2655 (dp2656 g18 g3 (g19 g5 (ltRp2657 (dp2658 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2659 (dp2660 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2661 (dp2662 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2663 (dp2664 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p2665 sg22 I00 sg37 g38 sg39 g2665 sbag3 (g7 g8 NtRp2666 (dp2667 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp2668 (dp2669 g18 g3 (g19 g5 (ltRp2670 (dp2671 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2672 (dp2673 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2674 (dp2675 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2676 (dp2677 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p2678 sg22 I00 sg37 g38 sg39 g2678 sbag3 (g7 g8 NtRp2679 (dp2680 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp2681 (dp2682 g18 g3 (g19 g5 (ltRp2683 (dp2684 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2685 (dp2686 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2687 (dp2688 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2689 (dp2690 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p2691 sg22 I00 sg37 g38 sg39 g2691 sbag3 (g7 g8 NtRp2692 (dp2693 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp2694 (dp2695 g18 g3 (g19 g5 (ltRp2696 (dp2697 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2698 (dp2699 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2700 (dp2701 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2702 (dp2703 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p2704 sg22 I00 sg37 g38 sg39 g2704 sbag3 (g7 g8 NtRp2705 (dp2706 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp2707 (dp2708 g18 g3 (g19 g5 (ltRp2709 (dp2710 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2711 (dp2712 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2713 (dp2714 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2715 (dp2716 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p2717 sg22 I00 sg37 g38 sg39 g2717 sbag3 (g7 g8 NtRp2718 (dp2719 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp2720 (dp2721 g18 g3 (g19 g5 (ltRp2722 (dp2723 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2724 (dp2725 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2726 (dp2727 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2728 (dp2729 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p2730 sg22 I00 sg37 g38 sg39 g2730 sbag3 (g7 g8 NtRp2731 (dp2732 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp2733 (dp2734 g18 g3 (g19 g5 (ltRp2735 (dp2736 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2737 (dp2738 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2739 (dp2740 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2741 (dp2742 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p2743 sg22 I00 sg37 g38 sg39 g2743 sbag3 (g7 g8 NtRp2744 (dp2745 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp2746 (dp2747 g18 g3 (g19 g5 (ltRp2748 (dp2749 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2750 (dp2751 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2752 (dp2753 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2754 (dp2755 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p2756 sg22 I00 sg37 g38 sg39 g2756 sbag3 (g7 g8 NtRp2757 (dp2758 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp2759 (dp2760 g18 g3 (g19 g5 (ltRp2761 (dp2762 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2763 (dp2764 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2765 (dp2766 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2767 (dp2768 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p2769 sg22 I00 sg37 g38 sg39 g2769 sbag3 (g7 g8 NtRp2770 (dp2771 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp2772 (dp2773 g18 g3 (g19 g5 (ltRp2774 (dp2775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2776 (dp2777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2778 (dp2779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2780 (dp2781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p2782 sg22 I00 sg37 g38 sg39 g2782 sbag3 (g7 g8 NtRp2783 (dp2784 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp2785 (dp2786 g18 g3 (g19 g5 (ltRp2787 (dp2788 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2789 (dp2790 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2791 (dp2792 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2793 (dp2794 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p2795 sg22 I00 sg37 g38 sg39 g2795 sbatRp2796 (dp2797 g12 I185 sg22 I00 sg11 NsbsS'HTTP Client Per URL' p2798 g3 (g4 g5 (lp2799 g3 (g7 g8 NtRp2800 (dp2801 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp2802 (dp2803 g18 g3 (g19 g5 (ltRp2804 (dp2805 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2806 (dp2807 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2808 (dp2809 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2810 (dp2811 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Sent' p2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp2813 (dp2814 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp2815 (dp2816 g18 g3 (g19 g5 (ltRp2817 (dp2818 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2819 (dp2820 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2821 (dp2822 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2823 (dp2824 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp2826 (dp2827 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp2828 (dp2829 g18 g3 (g19 g5 (ltRp2830 (dp2831 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2832 (dp2833 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2834 (dp2835 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2836 (dp2837 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (Provisional)' p2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp2839 (dp2840 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp2841 (dp2842 g18 g3 (g19 g5 (ltRp2843 (dp2844 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2845 (dp2846 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2847 (dp2848 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2849 (dp2850 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp2852 (dp2853 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp2854 (dp2855 g18 g3 (g19 g5 (ltRp2856 (dp2857 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2858 (dp2859 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2860 (dp2861 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2862 (dp2863 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write)' p2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp2865 (dp2866 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp2867 (dp2868 g18 g3 (g19 g5 (ltRp2869 (dp2870 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2871 (dp2872 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2873 (dp2874 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2875 (dp2876 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Read)' p2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp2878 (dp2879 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp2880 (dp2881 g18 g3 (g19 g5 (ltRp2882 (dp2883 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2884 (dp2885 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2886 (dp2887 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2888 (dp2889 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Bad Header)' p2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp2891 (dp2892 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp2893 (dp2894 g18 g3 (g19 g5 (ltRp2895 (dp2896 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2897 (dp2898 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2899 (dp2900 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2901 (dp2902 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx)' p2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp2904 (dp2905 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp2906 (dp2907 g18 g3 (g19 g5 (ltRp2908 (dp2909 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2910 (dp2911 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2912 (dp2913 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2914 (dp2915 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (400)' p2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp2917 (dp2918 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp2919 (dp2920 g18 g3 (g19 g5 (ltRp2921 (dp2922 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2923 (dp2924 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2925 (dp2926 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2927 (dp2928 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (401)' p2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp2930 (dp2931 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp2932 (dp2933 g18 g3 (g19 g5 (ltRp2934 (dp2935 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2936 (dp2937 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2938 (dp2939 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2940 (dp2941 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (403)' p2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp2943 (dp2944 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp2945 (dp2946 g18 g3 (g19 g5 (ltRp2947 (dp2948 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2949 (dp2950 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2951 (dp2952 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2953 (dp2954 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp2956 (dp2957 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp2958 (dp2959 g18 g3 (g19 g5 (ltRp2960 (dp2961 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2962 (dp2963 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2964 (dp2965 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2966 (dp2967 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (407)' p2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp2969 (dp2970 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp2971 (dp2972 g18 g3 (g19 g5 (ltRp2973 (dp2974 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2975 (dp2976 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2977 (dp2978 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2979 (dp2980 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (408)' p2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp2982 (dp2983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp2984 (dp2985 g18 g3 (g19 g5 (ltRp2986 (dp2987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2988 (dp2989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2990 (dp2991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2992 (dp2993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx other)' p2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp2995 (dp2996 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp2997 (dp2998 g18 g3 (g19 g5 (ltRp2999 (dp3000 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3001 (dp3002 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3003 (dp3004 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3005 (dp3006 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx)' p3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp3008 (dp3009 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp3010 (dp3011 g18 g3 (g19 g5 (ltRp3012 (dp3013 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3014 (dp3015 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3016 (dp3017 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3018 (dp3019 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (505)' p3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp3021 (dp3022 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp3023 (dp3024 g18 g3 (g19 g5 (ltRp3025 (dp3026 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3027 (dp3028 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3029 (dp3030 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3031 (dp3032 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx other)' p3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp3034 (dp3035 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp3036 (dp3037 g18 g3 (g19 g5 (ltRp3038 (dp3039 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3040 (dp3041 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3042 (dp3043 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3044 (dp3045 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (other)' p3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp3047 (dp3048 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp3049 (dp3050 g18 g3 (g19 g5 (ltRp3051 (dp3052 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3053 (dp3054 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3055 (dp3056 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3057 (dp3058 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Timeout)' p3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp3060 (dp3061 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp3062 (dp3063 g18 g3 (g19 g5 (ltRp3064 (dp3065 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3066 (dp3067 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3068 (dp3069 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3070 (dp3071 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp3073 (dp3074 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp3075 (dp3076 g18 g3 (g19 g5 (ltRp3077 (dp3078 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3079 (dp3080 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3081 (dp3082 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3083 (dp3084 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted Before Request' p3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp3086 (dp3087 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp3088 (dp3089 g18 g3 (g19 g5 (ltRp3090 (dp3091 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3092 (dp3093 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3094 (dp3095 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3096 (dp3097 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted After Request' p3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp3099 (dp3100 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp3101 (dp3102 g18 g3 (g19 g5 (ltRp3103 (dp3104 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3105 (dp3106 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3107 (dp3108 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3109 (dp3110 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received With Match' p3111 sg22 I00 sg37 g38 sg39 g3111 sbag3 (g7 g8 NtRp3112 (dp3113 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp3114 (dp3115 g18 g3 (g19 g5 (ltRp3116 (dp3117 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3118 (dp3119 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3120 (dp3121 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3122 (dp3123 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received Without Match' p3124 sg22 I00 sg37 g38 sg39 g3124 sbag3 (g7 g8 NtRp3125 (dp3126 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp3127 (dp3128 g18 g3 (g19 g5 (ltRp3129 (dp3130 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3131 (dp3132 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3133 (dp3134 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3135 (dp3136 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Intermediate Responses Received (1xx)' p3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3138 (dp3139 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp3140 (dp3141 g18 g3 (g19 g5 (ltRp3142 (dp3143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3144 (dp3145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3146 (dp3147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3148 (dp3149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (2xx)' p3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3151 (dp3152 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp3153 (dp3154 g18 g3 (g19 g5 (ltRp3155 (dp3156 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3157 (dp3158 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3159 (dp3160 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3161 (dp3162 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (3xx)' p3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3164 (dp3165 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp3166 (dp3167 g18 g3 (g19 g5 (ltRp3168 (dp3169 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3170 (dp3171 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3172 (dp3173 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3174 (dp3175 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (301)' p3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3177 (dp3178 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp3179 (dp3180 g18 g3 (g19 g5 (ltRp3181 (dp3182 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3183 (dp3184 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3185 (dp3186 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3187 (dp3188 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (302)' p3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp3190 (dp3191 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp3192 (dp3193 g18 g3 (g19 g5 (ltRp3194 (dp3195 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3196 (dp3197 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3198 (dp3199 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3200 (dp3201 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (303)' p3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp3203 (dp3204 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp3205 (dp3206 g18 g3 (g19 g5 (ltRp3207 (dp3208 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3209 (dp3210 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3211 (dp3212 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3213 (dp3214 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (307)' p3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp3216 (dp3217 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp3218 (dp3219 g18 g3 (g19 g5 (ltRp3220 (dp3221 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3222 (dp3223 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3224 (dp3225 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3226 (dp3227 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Sent' p3228 sg22 I00 sg37 g38 sg39 g3228 sbag3 (g7 g8 NtRp3229 (dp3230 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp3231 (dp3232 g18 g3 (g19 g5 (ltRp3233 (dp3234 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3235 (dp3236 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3237 (dp3238 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3239 (dp3240 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Headers Received' p3241 sg22 I00 sg37 g38 sg39 g3241 sbag3 (g7 g8 NtRp3242 (dp3243 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp3244 (dp3245 g18 g3 (g19 g5 (ltRp3246 (dp3247 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3248 (dp3249 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3250 (dp3251 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3252 (dp3253 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Received' p3254 sg22 I00 sg37 g38 sg39 g3254 sbag3 (g7 g8 NtRp3255 (dp3256 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp3257 (dp3258 g18 g3 (g19 g5 (ltRp3259 (dp3260 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3261 (dp3262 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3263 (dp3264 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3265 (dp3266 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Successful' p3267 sg22 I00 sg37 g38 sg39 g3267 sbag3 (g7 g8 NtRp3268 (dp3269 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp3270 (dp3271 g18 g3 (g19 g5 (ltRp3272 (dp3273 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3274 (dp3275 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3276 (dp3277 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3278 (dp3279 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Failed' p3280 sg22 I00 sg37 g38 sg39 g3280 sbag3 (g7 g8 NtRp3281 (dp3282 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp3283 (dp3284 g18 g3 (g19 g5 (ltRp3285 (dp3286 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3287 (dp3288 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3289 (dp3290 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3291 (dp3292 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p3293 sg22 I00 sg37 g38 sg39 g3293 sbag3 (g7 g8 NtRp3294 (dp3295 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp3296 (dp3297 g18 g3 (g19 g5 (ltRp3298 (dp3299 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3300 (dp3301 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3302 (dp3303 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3304 (dp3305 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p3306 sg22 I00 sg37 g261 sg39 g3306 sbag3 (g7 g8 NtRp3307 (dp3308 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp3309 (dp3310 g18 g3 (g19 g5 (ltRp3311 (dp3312 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3313 (dp3314 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3315 (dp3316 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3317 (dp3318 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p3319 sg22 I00 sg37 g261 sg39 g3319 sbag3 (g7 g8 NtRp3320 (dp3321 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp3322 (dp3323 g18 g3 (g19 g5 (ltRp3324 (dp3325 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3326 (dp3327 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3328 (dp3329 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3330 (dp3331 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Sent' p3332 sg22 I00 sg37 g38 sg39 g3332 sbag3 (g7 g8 NtRp3333 (dp3334 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp3335 (dp3336 g18 g3 (g19 g5 (ltRp3337 (dp3338 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3339 (dp3340 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3341 (dp3342 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3343 (dp3344 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p3345 sg22 I00 sg37 g38 sg39 g3345 sbag3 (g7 g8 NtRp3346 (dp3347 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp3348 (dp3349 g18 g3 (g19 g5 (ltRp3350 (dp3351 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3352 (dp3353 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3354 (dp3355 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3356 (dp3357 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size in Request' p3358 sg22 I00 sg37 g261 sg39 g3358 sbag3 (g7 g8 NtRp3359 (dp3360 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp3361 (dp3362 g18 g3 (g19 g5 (ltRp3363 (dp3364 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3365 (dp3366 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3367 (dp3368 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3369 (dp3370 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p3371 sg22 I00 sg37 g261 sg39 g3371 sbag3 (g7 g8 NtRp3372 (dp3373 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp3374 (dp3375 g18 g3 (g19 g5 (ltRp3376 (dp3377 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3378 (dp3379 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3380 (dp3381 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3382 (dp3383 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name1-Value1' p3384 sg22 I00 sg37 S'kString' p3385 sg39 g3384 sbag3 (g7 g8 NtRp3386 (dp3387 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp3388 (dp3389 g18 g3 (g19 g5 (ltRp3390 (dp3391 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3392 (dp3393 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3394 (dp3395 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3396 (dp3397 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter1' p3398 sg22 I00 sg37 g38 sg39 g3398 sbag3 (g7 g8 NtRp3399 (dp3400 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp3401 (dp3402 g18 g3 (g19 g5 (ltRp3403 (dp3404 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3405 (dp3406 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3407 (dp3408 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3409 (dp3410 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name2-Value2' p3411 sg22 I00 sg37 g3385 sg39 g3411 sbag3 (g7 g8 NtRp3412 (dp3413 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp3414 (dp3415 g18 g3 (g19 g5 (ltRp3416 (dp3417 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3418 (dp3419 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3420 (dp3421 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3422 (dp3423 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter2' p3424 sg22 I00 sg37 g38 sg39 g3424 sbag3 (g7 g8 NtRp3425 (dp3426 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp3427 (dp3428 g18 g3 (g19 g5 (ltRp3429 (dp3430 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3431 (dp3432 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3433 (dp3434 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3435 (dp3436 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name3-Value3' p3437 sg22 I00 sg37 g3385 sg39 g3437 sbag3 (g7 g8 NtRp3438 (dp3439 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp3440 (dp3441 g18 g3 (g19 g5 (ltRp3442 (dp3443 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3444 (dp3445 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3446 (dp3447 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3448 (dp3449 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter3' p3450 sg22 I00 sg37 g38 sg39 g3450 sbag3 (g7 g8 NtRp3451 (dp3452 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp3453 (dp3454 g18 g3 (g19 g5 (ltRp3455 (dp3456 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3457 (dp3458 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3459 (dp3460 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3461 (dp3462 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name4-Value4' p3463 sg22 I00 sg37 g3385 sg39 g3463 sbag3 (g7 g8 NtRp3464 (dp3465 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp3466 (dp3467 g18 g3 (g19 g5 (ltRp3468 (dp3469 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3470 (dp3471 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3472 (dp3473 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3474 (dp3475 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter4' p3476 sg22 I00 sg37 g38 sg39 g3476 sbag3 (g7 g8 NtRp3477 (dp3478 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp3479 (dp3480 g18 g3 (g19 g5 (ltRp3481 (dp3482 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3483 (dp3484 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3485 (dp3486 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3487 (dp3488 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name5-Value5' p3489 sg22 I00 sg37 g3385 sg39 g3489 sbag3 (g7 g8 NtRp3490 (dp3491 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp3492 (dp3493 g18 g3 (g19 g5 (ltRp3494 (dp3495 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3496 (dp3497 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3498 (dp3499 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3500 (dp3501 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter5' p3502 sg22 I00 sg37 g38 sg39 g3502 sbag3 (g7 g8 NtRp3503 (dp3504 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp3505 (dp3506 g18 g3 (g19 g5 (ltRp3507 (dp3508 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3509 (dp3510 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3511 (dp3512 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3513 (dp3514 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name6-Value6' p3515 sg22 I00 sg37 g3385 sg39 g3515 sbag3 (g7 g8 NtRp3516 (dp3517 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp3518 (dp3519 g18 g3 (g19 g5 (ltRp3520 (dp3521 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3522 (dp3523 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3524 (dp3525 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3526 (dp3527 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter6' p3528 sg22 I00 sg37 g38 sg39 g3528 sbag3 (g7 g8 NtRp3529 (dp3530 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp3531 (dp3532 g18 g3 (g19 g5 (ltRp3533 (dp3534 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3535 (dp3536 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3537 (dp3538 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3539 (dp3540 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name7-Value7' p3541 sg22 I00 sg37 g3385 sg39 g3541 sbag3 (g7 g8 NtRp3542 (dp3543 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp3544 (dp3545 g18 g3 (g19 g5 (ltRp3546 (dp3547 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3548 (dp3549 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3550 (dp3551 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3552 (dp3553 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter7' p3554 sg22 I00 sg37 g38 sg39 g3554 sbag3 (g7 g8 NtRp3555 (dp3556 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp3557 (dp3558 g18 g3 (g19 g5 (ltRp3559 (dp3560 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3561 (dp3562 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3563 (dp3564 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3565 (dp3566 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name8-Value8' p3567 sg22 I00 sg37 g3385 sg39 g3567 sbag3 (g7 g8 NtRp3568 (dp3569 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp3570 (dp3571 g18 g3 (g19 g5 (ltRp3572 (dp3573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3574 (dp3575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3576 (dp3577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3578 (dp3579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter8' p3580 sg22 I00 sg37 g38 sg39 g3580 sbag3 (g7 g8 NtRp3581 (dp3582 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp3583 (dp3584 g18 g3 (g19 g5 (ltRp3585 (dp3586 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3587 (dp3588 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3589 (dp3590 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3591 (dp3592 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name9-Value9' p3593 sg22 I00 sg37 g3385 sg39 g3593 sbag3 (g7 g8 NtRp3594 (dp3595 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp3596 (dp3597 g18 g3 (g19 g5 (ltRp3598 (dp3599 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3600 (dp3601 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3602 (dp3603 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3604 (dp3605 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter9' p3606 sg22 I00 sg37 g38 sg39 g3606 sbag3 (g7 g8 NtRp3607 (dp3608 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp3609 (dp3610 g18 g3 (g19 g5 (ltRp3611 (dp3612 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3613 (dp3614 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3615 (dp3616 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3617 (dp3618 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name10-Value10' p3619 sg22 I00 sg37 g3385 sg39 g3619 sbag3 (g7 g8 NtRp3620 (dp3621 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp3622 (dp3623 g18 g3 (g19 g5 (ltRp3624 (dp3625 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3626 (dp3627 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3628 (dp3629 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3630 (dp3631 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter10' p3632 sg22 I00 sg37 g38 sg39 g3632 sbag3 (g7 g8 NtRp3633 (dp3634 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp3635 (dp3636 g18 g3 (g19 g5 (ltRp3637 (dp3638 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3639 (dp3640 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3641 (dp3642 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3643 (dp3644 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Received' p3645 sg22 I00 sg37 g38 sg39 g3645 sbag3 (g7 g8 NtRp3646 (dp3647 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp3648 (dp3649 g18 g3 (g19 g5 (ltRp3650 (dp3651 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3652 (dp3653 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3654 (dp3655 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3656 (dp3657 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Successful' p3658 sg22 I00 sg37 g38 sg39 g3658 sbag3 (g7 g8 NtRp3659 (dp3660 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp3661 (dp3662 g18 g3 (g19 g5 (ltRp3663 (dp3664 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3665 (dp3666 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3667 (dp3668 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3669 (dp3670 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Failed' p3671 sg22 I00 sg37 g38 sg39 g3671 sbag3 (g7 g8 NtRp3672 (dp3673 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp3674 (dp3675 g18 g3 (g19 g5 (ltRp3676 (dp3677 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3678 (dp3679 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3680 (dp3681 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3682 (dp3683 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Received' p3684 sg22 I00 sg37 g38 sg39 g3684 sbag3 (g7 g8 NtRp3685 (dp3686 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp3687 (dp3688 g18 g3 (g19 g5 (ltRp3689 (dp3690 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3691 (dp3692 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3693 (dp3694 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3695 (dp3696 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Successful' p3697 sg22 I00 sg37 g38 sg39 g3697 sbag3 (g7 g8 NtRp3698 (dp3699 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp3700 (dp3701 g18 g3 (g19 g5 (ltRp3702 (dp3703 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3704 (dp3705 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3706 (dp3707 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3708 (dp3709 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Failed' p3710 sg22 I00 sg37 g38 sg39 g3710 sbag3 (g7 g8 NtRp3711 (dp3712 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp3713 (dp3714 g18 g3 (g19 g5 (ltRp3715 (dp3716 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3717 (dp3718 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3719 (dp3720 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3721 (dp3722 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Received' p3723 sg22 I00 sg37 g38 sg39 g3723 sbag3 (g7 g8 NtRp3724 (dp3725 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp3726 (dp3727 g18 g3 (g19 g5 (ltRp3728 (dp3729 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3730 (dp3731 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3732 (dp3733 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3734 (dp3735 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Successful' p3736 sg22 I00 sg37 g38 sg39 g3736 sbag3 (g7 g8 NtRp3737 (dp3738 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp3739 (dp3740 g18 g3 (g19 g5 (ltRp3741 (dp3742 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3743 (dp3744 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3745 (dp3746 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3747 (dp3748 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Failed' p3749 sg22 I00 sg37 g38 sg39 g3749 sbag3 (g7 g8 NtRp3750 (dp3751 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp3752 (dp3753 g18 g3 (g19 g5 (ltRp3754 (dp3755 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3756 (dp3757 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3758 (dp3759 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3760 (dp3761 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Received' p3762 sg22 I00 sg37 g38 sg39 g3762 sbag3 (g7 g8 NtRp3763 (dp3764 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp3765 (dp3766 g18 g3 (g19 g5 (ltRp3767 (dp3768 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3769 (dp3770 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3771 (dp3772 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3773 (dp3774 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Successful' p3775 sg22 I00 sg37 g38 sg39 g3775 sbag3 (g7 g8 NtRp3776 (dp3777 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp3778 (dp3779 g18 g3 (g19 g5 (ltRp3780 (dp3781 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3782 (dp3783 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3784 (dp3785 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3786 (dp3787 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Failed' p3788 sg22 I00 sg37 g38 sg39 g3788 sbag3 (g7 g8 NtRp3789 (dp3790 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp3791 (dp3792 g18 g3 (g19 g5 (ltRp3793 (dp3794 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3795 (dp3796 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3797 (dp3798 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3799 (dp3800 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Average Compression Ratio' p3801 sg22 I00 sg37 g261 sg39 g3801 sbatRp3802 (dp3803 g12 I76 sg22 I00 sg11 NsbsS'HTTP Client' p3804 g3 (g4 g5 (lp3805 g3 (g7 g8 NtRp3806 (dp3807 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp3808 (dp3809 g18 g3 (g19 g5 (ltRp3810 (dp3811 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3812 (dp3813 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3814 (dp3815 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3816 (dp3817 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Simulated Users' p3818 sg22 I00 sg37 g38 sg39 g3818 sbag3 (g7 g8 NtRp3819 (dp3820 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp3821 (dp3822 g18 g3 (g19 g5 (ltRp3823 (dp3824 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3825 (dp3826 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3827 (dp3828 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3829 (dp3830 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Concurrent Connections' p3831 sg22 I00 sg37 g38 sg39 g3831 sbag3 (g7 g8 NtRp3832 (dp3833 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp3834 (dp3835 g18 g3 (g19 g5 (ltRp3836 (dp3837 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3838 (dp3839 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3840 (dp3841 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3842 (dp3843 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connections' p3844 sg22 I00 sg37 g38 sg39 g3844 sbag3 (g7 g8 NtRp3845 (dp3846 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp3847 (dp3848 g18 g3 (g19 g5 (ltRp3849 (dp3850 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3851 (dp3852 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3853 (dp3854 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3855 (dp3856 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Attempts' p3857 sg22 I00 sg37 g38 sg39 g3857 sbag3 (g7 g8 NtRp3858 (dp3859 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp3860 (dp3861 g18 g3 (g19 g5 (ltRp3862 (dp3863 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3864 (dp3865 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3866 (dp3867 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3868 (dp3869 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Aborts' p3870 sg22 I00 sg37 g38 sg39 g3870 sbag3 (g7 g8 NtRp3871 (dp3872 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp3873 (dp3874 g18 g3 (g19 g5 (ltRp3875 (dp3876 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3877 (dp3878 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3879 (dp3880 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3881 (dp3882 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Aborts' p3883 sg22 I00 sg37 g38 sg39 g3883 sbag3 (g7 g8 NtRp3884 (dp3885 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp3886 (dp3887 g18 g3 (g19 g5 (ltRp3888 (dp3889 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3890 (dp3891 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3892 (dp3893 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3894 (dp3895 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions' p3896 sg22 I00 sg37 g38 sg39 g3896 sbag3 (g7 g8 NtRp3897 (dp3898 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp3899 (dp3900 g18 g3 (g19 g5 (ltRp3901 (dp3902 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3903 (dp3904 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3905 (dp3906 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3907 (dp3908 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes' p3909 sg22 I00 sg37 g38 sg39 g3909 sbag3 (g7 g8 NtRp3910 (dp3911 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp3912 (dp3913 g18 g3 (g19 g5 (ltRp3914 (dp3915 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3916 (dp3917 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3918 (dp3919 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3920 (dp3921 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp3922 (dp3923 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp3924 (dp3925 g18 g3 (g19 g5 (ltRp3926 (dp3927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3928 (dp3929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3930 (dp3931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3932 (dp3933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp3934 (dp3935 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp3936 (dp3937 g18 g3 (g19 g5 (ltRp3938 (dp3939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3940 (dp3941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3942 (dp3943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3944 (dp3945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp3946 (dp3947 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp3948 (dp3949 g18 g3 (g19 g5 (ltRp3950 (dp3951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3952 (dp3953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3954 (dp3955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3956 (dp3957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3958 (dp3959 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp3960 (dp3961 g18 g3 (g19 g5 (ltRp3962 (dp3963 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3964 (dp3965 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3966 (dp3967 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3968 (dp3969 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3970 (dp3971 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp3972 (dp3973 g18 g3 (g19 g5 (ltRp3974 (dp3975 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3976 (dp3977 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3978 (dp3979 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3980 (dp3981 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3982 (dp3983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp3984 (dp3985 g18 g3 (g19 g5 (ltRp3986 (dp3987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3988 (dp3989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3990 (dp3991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3992 (dp3993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3994 (dp3995 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp3996 (dp3997 g18 g3 (g19 g5 (ltRp3998 (dp3999 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4000 (dp4001 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4002 (dp4003 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4004 (dp4005 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp4006 (dp4007 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp4008 (dp4009 g18 g3 (g19 g5 (ltRp4010 (dp4011 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4012 (dp4013 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4014 (dp4015 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4016 (dp4017 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp4018 (dp4019 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp4020 (dp4021 g18 g3 (g19 g5 (ltRp4022 (dp4023 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4024 (dp4025 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4026 (dp4027 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4028 (dp4029 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp4030 (dp4031 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp4032 (dp4033 g18 g3 (g19 g5 (ltRp4034 (dp4035 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4036 (dp4037 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4038 (dp4039 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4040 (dp4041 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp4042 (dp4043 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp4044 (dp4045 g18 g3 (g19 g5 (ltRp4046 (dp4047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4048 (dp4049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4050 (dp4051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4052 (dp4053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp4054 (dp4055 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp4056 (dp4057 g18 g3 (g19 g5 (ltRp4058 (dp4059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4060 (dp4061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4062 (dp4063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4064 (dp4065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp4066 (dp4067 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp4068 (dp4069 g18 g3 (g19 g5 (ltRp4070 (dp4071 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4072 (dp4073 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4074 (dp4075 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4076 (dp4077 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp4078 (dp4079 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp4080 (dp4081 g18 g3 (g19 g5 (ltRp4082 (dp4083 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4084 (dp4085 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4086 (dp4087 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4088 (dp4089 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp4090 (dp4091 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp4092 (dp4093 g18 g3 (g19 g5 (ltRp4094 (dp4095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4096 (dp4097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4098 (dp4099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4100 (dp4101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp4102 (dp4103 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp4104 (dp4105 g18 g3 (g19 g5 (ltRp4106 (dp4107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4108 (dp4109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4110 (dp4111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4112 (dp4113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp4114 (dp4115 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp4116 (dp4117 g18 g3 (g19 g5 (ltRp4118 (dp4119 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4120 (dp4121 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4122 (dp4123 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4124 (dp4125 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp4126 (dp4127 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp4128 (dp4129 g18 g3 (g19 g5 (ltRp4130 (dp4131 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4132 (dp4133 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4134 (dp4135 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4136 (dp4137 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp4138 (dp4139 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp4140 (dp4141 g18 g3 (g19 g5 (ltRp4142 (dp4143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4144 (dp4145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4146 (dp4147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4148 (dp4149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp4150 (dp4151 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp4152 (dp4153 g18 g3 (g19 g5 (ltRp4154 (dp4155 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4156 (dp4157 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4158 (dp4159 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4160 (dp4161 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp4162 (dp4163 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp4164 (dp4165 g18 g3 (g19 g5 (ltRp4166 (dp4167 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4168 (dp4169 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4170 (dp4171 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4172 (dp4173 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp4174 (dp4175 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp4176 (dp4177 g18 g3 (g19 g5 (ltRp4178 (dp4179 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4180 (dp4181 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4182 (dp4183 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4184 (dp4185 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp4186 (dp4187 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp4188 (dp4189 g18 g3 (g19 g5 (ltRp4190 (dp4191 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4192 (dp4193 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4194 (dp4195 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4196 (dp4197 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp4198 (dp4199 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp4200 (dp4201 g18 g3 (g19 g5 (ltRp4202 (dp4203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4204 (dp4205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4206 (dp4207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4208 (dp4209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp4210 (dp4211 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp4212 (dp4213 g18 g3 (g19 g5 (ltRp4214 (dp4215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4216 (dp4217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4218 (dp4219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4220 (dp4221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp4222 (dp4223 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp4224 (dp4225 g18 g3 (g19 g5 (ltRp4226 (dp4227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4228 (dp4229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4230 (dp4231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4232 (dp4233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp4234 (dp4235 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp4236 (dp4237 g18 g3 (g19 g5 (ltRp4238 (dp4239 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4240 (dp4241 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4242 (dp4243 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4244 (dp4245 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp4246 (dp4247 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp4248 (dp4249 g18 g3 (g19 g5 (ltRp4250 (dp4251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4252 (dp4253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4254 (dp4255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4256 (dp4257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p4258 sg22 I00 sg37 g38 sg39 g4258 sbag3 (g7 g8 NtRp4259 (dp4260 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp4261 (dp4262 g18 g3 (g19 g5 (ltRp4263 (dp4264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4265 (dp4266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4267 (dp4268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4269 (dp4270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Request Precondition Failed (412)' p4271 sg22 I00 sg37 g38 sg39 g4271 sbag3 (g7 g8 NtRp4272 (dp4273 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp4274 (dp4275 g18 g3 (g19 g5 (ltRp4276 (dp4277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4278 (dp4279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4280 (dp4281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4282 (dp4283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p4284 sg22 I00 sg37 g38 sg39 g4284 sbag3 (g7 g8 NtRp4285 (dp4286 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp4287 (dp4288 g18 g3 (g19 g5 (ltRp4289 (dp4290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4291 (dp4292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4293 (dp4294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4295 (dp4296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp4297 (dp4298 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp4299 (dp4300 g18 g3 (g19 g5 (ltRp4301 (dp4302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4303 (dp4304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4305 (dp4306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4307 (dp4308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp4309 (dp4310 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp4311 (dp4312 g18 g3 (g19 g5 (ltRp4313 (dp4314 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4315 (dp4316 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4317 (dp4318 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4319 (dp4320 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions Active' p4321 sg22 I00 sg37 g38 sg39 g4321 sbag3 (g7 g8 NtRp4322 (dp4323 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp4324 (dp4325 g18 g3 (g19 g5 (ltRp4326 (dp4327 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4328 (dp4329 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4330 (dp4331 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4332 (dp4333 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Users Active' p4334 sg22 I00 sg37 g38 sg39 g4334 sbag3 (g7 g8 NtRp4335 (dp4336 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp4337 (dp4338 g18 g3 (g19 g5 (ltRp4339 (dp4340 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4341 (dp4342 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4343 (dp4344 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4345 (dp4346 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Received' p4347 sg22 I00 sg37 g38 sg39 g4347 sbag3 (g7 g8 NtRp4348 (dp4349 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp4350 (dp4351 g18 g3 (g19 g5 (ltRp4352 (dp4353 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4354 (dp4355 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4356 (dp4357 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4358 (dp4359 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Received' p4360 sg22 I00 sg37 g38 sg39 g4360 sbag3 (g7 g8 NtRp4361 (dp4362 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp4363 (dp4364 g18 g3 (g19 g5 (ltRp4365 (dp4366 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4367 (dp4368 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4369 (dp4370 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4371 (dp4372 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Received' p4373 sg22 I00 sg37 g38 sg39 g4373 sbag3 (g7 g8 NtRp4374 (dp4375 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp4376 (dp4377 g18 g3 (g19 g5 (ltRp4378 (dp4379 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4380 (dp4381 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4382 (dp4383 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4384 (dp4385 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Unrecognized Content-Encoding Received' p4386 sg22 I00 sg37 g38 sg39 g4386 sbag3 (g7 g8 NtRp4387 (dp4388 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp4389 (dp4390 g18 g3 (g19 g5 (ltRp4391 (dp4392 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4393 (dp4394 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4395 (dp4396 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4397 (dp4398 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Successful' p4399 sg22 I00 sg37 g38 sg39 g4399 sbag3 (g7 g8 NtRp4400 (dp4401 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp4402 (dp4403 g18 g3 (g19 g5 (ltRp4404 (dp4405 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4406 (dp4407 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4408 (dp4409 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4410 (dp4411 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Successful' p4412 sg22 I00 sg37 g38 sg39 g4412 sbag3 (g7 g8 NtRp4413 (dp4414 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp4415 (dp4416 g18 g3 (g19 g5 (ltRp4417 (dp4418 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4419 (dp4420 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4421 (dp4422 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4423 (dp4424 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Successful' p4425 sg22 I00 sg37 g38 sg39 g4425 sbag3 (g7 g8 NtRp4426 (dp4427 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp4428 (dp4429 g18 g3 (g19 g5 (ltRp4430 (dp4431 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4432 (dp4433 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4434 (dp4435 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4436 (dp4437 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Failed' p4438 sg22 I00 sg37 g38 sg39 g4438 sbag3 (g7 g8 NtRp4439 (dp4440 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp4441 (dp4442 g18 g3 (g19 g5 (ltRp4443 (dp4444 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4445 (dp4446 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4447 (dp4448 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4449 (dp4450 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed' p4451 sg22 I00 sg37 g38 sg39 g4451 sbag3 (g7 g8 NtRp4452 (dp4453 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp4454 (dp4455 g18 g3 (g19 g5 (ltRp4456 (dp4457 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4458 (dp4459 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4460 (dp4461 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4462 (dp4463 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed' p4464 sg22 I00 sg37 g38 sg39 g4464 sbag3 (g7 g8 NtRp4465 (dp4466 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp4467 (dp4468 g18 g3 (g19 g5 (ltRp4469 (dp4470 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4471 (dp4472 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4473 (dp4474 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4475 (dp4476 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Data Error' p4477 sg22 I00 sg37 g38 sg39 g4477 sbag3 (g7 g8 NtRp4478 (dp4479 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp4480 (dp4481 g18 g3 (g19 g5 (ltRp4482 (dp4483 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4484 (dp4485 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4486 (dp4487 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4488 (dp4489 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Decoding Error' p4490 sg22 I00 sg37 g38 sg39 g4490 sbag3 (g7 g8 NtRp4491 (dp4492 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp4493 (dp4494 g18 g3 (g19 g5 (ltRp4495 (dp4496 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4497 (dp4498 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4499 (dp4500 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4501 (dp4502 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Data Error' p4503 sg22 I00 sg37 g38 sg39 g4503 sbag3 (g7 g8 NtRp4504 (dp4505 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp4506 (dp4507 g18 g3 (g19 g5 (ltRp4508 (dp4509 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4510 (dp4511 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4512 (dp4513 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4514 (dp4515 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Decoding Error' p4516 sg22 I00 sg37 g38 sg39 g4516 sbag3 (g7 g8 NtRp4517 (dp4518 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp4519 (dp4520 g18 g3 (g19 g5 (ltRp4521 (dp4522 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4523 (dp4524 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4525 (dp4526 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4527 (dp4528 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Headers Received' p4529 sg22 I00 sg37 g38 sg39 g4529 sbag3 (g7 g8 NtRp4530 (dp4531 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp4532 (dp4533 g18 g3 (g19 g5 (ltRp4534 (dp4535 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4536 (dp4537 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4538 (dp4539 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4540 (dp4541 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Responses Received' p4542 sg22 I00 sg37 g38 sg39 g4542 sbag3 (g7 g8 NtRp4543 (dp4544 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp4545 (dp4546 g18 g3 (g19 g5 (ltRp4547 (dp4548 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4549 (dp4550 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4551 (dp4552 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4553 (dp4554 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Successful' p4555 sg22 I00 sg37 g38 sg39 g4555 sbag3 (g7 g8 NtRp4556 (dp4557 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp4558 (dp4559 g18 g3 (g19 g5 (ltRp4560 (dp4561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4562 (dp4563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4564 (dp4565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4566 (dp4567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Failed' p4568 sg22 I00 sg37 g38 sg39 g4568 sbag3 (g7 g8 NtRp4569 (dp4570 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp4571 (dp4572 g18 g3 (g19 g5 (ltRp4573 (dp4574 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4575 (dp4576 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4577 (dp4578 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4579 (dp4580 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Received' p4581 sg22 I00 sg37 g38 sg39 g4581 sbag3 (g7 g8 NtRp4582 (dp4583 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp4584 (dp4585 g18 g3 (g19 g5 (ltRp4586 (dp4587 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4588 (dp4589 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4590 (dp4591 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4592 (dp4593 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Headers Sent' p4594 sg22 I00 sg37 g38 sg39 g4594 sbag3 (g7 g8 NtRp4595 (dp4596 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp4597 (dp4598 g18 g3 (g19 g5 (ltRp4599 (dp4600 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4601 (dp4602 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4603 (dp4604 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4605 (dp4606 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Sent' p4607 sg22 I00 sg37 g38 sg39 g4607 sbag3 (g7 g8 NtRp4608 (dp4609 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp4610 (dp4611 g18 g3 (g19 g5 (ltRp4612 (dp4613 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4614 (dp4615 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4616 (dp4617 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4618 (dp4619 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Responses Received' p4620 sg22 I00 sg37 g38 sg39 g4620 sbag3 (g7 g8 NtRp4621 (dp4622 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp4623 (dp4624 g18 g3 (g19 g5 (ltRp4625 (dp4626 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4627 (dp4628 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4629 (dp4630 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4631 (dp4632 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Successful' p4633 sg22 I00 sg37 g38 sg39 g4633 sbag3 (g7 g8 NtRp4634 (dp4635 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp4636 (dp4637 g18 g3 (g19 g5 (ltRp4638 (dp4639 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4640 (dp4641 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4642 (dp4643 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4644 (dp4645 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Failed' p4646 sg22 I00 sg37 g38 sg39 g4646 sbag3 (g7 g8 NtRp4647 (dp4648 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp4649 (dp4650 g18 g3 (g19 g5 (ltRp4651 (dp4652 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4653 (dp4654 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4655 (dp4656 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4657 (dp4658 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Responses Received' p4659 sg22 I00 sg37 g38 sg39 g4659 sbag3 (g7 g8 NtRp4660 (dp4661 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp4662 (dp4663 g18 g3 (g19 g5 (ltRp4664 (dp4665 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4666 (dp4667 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4668 (dp4669 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4670 (dp4671 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Successful' p4672 sg22 I00 sg37 g38 sg39 g4672 sbag3 (g7 g8 NtRp4673 (dp4674 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp4675 (dp4676 g18 g3 (g19 g5 (ltRp4677 (dp4678 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4679 (dp4680 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4681 (dp4682 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4683 (dp4684 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Failed' p4685 sg22 I00 sg37 g38 sg39 g4685 sbag3 (g7 g8 NtRp4686 (dp4687 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp4688 (dp4689 g18 g3 (g19 g5 (ltRp4690 (dp4691 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4692 (dp4693 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4694 (dp4695 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4696 (dp4697 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p4698 sg22 I00 sg37 g38 sg39 g4698 sbag3 (g7 g8 NtRp4699 (dp4700 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp4701 (dp4702 g18 g3 (g19 g5 (ltRp4703 (dp4704 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4705 (dp4706 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4707 (dp4708 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4709 (dp4710 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p4711 sg22 I00 sg37 g38 sg39 g4711 sbag3 (g7 g8 NtRp4712 (dp4713 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp4714 (dp4715 g18 g3 (g19 g5 (ltRp4716 (dp4717 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4718 (dp4719 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4720 (dp4721 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4722 (dp4723 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p4724 sg22 I00 sg37 g38 sg39 g4724 sbag3 (g7 g8 NtRp4725 (dp4726 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp4727 (dp4728 g18 g3 (g19 g5 (ltRp4729 (dp4730 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4731 (dp4732 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4733 (dp4734 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4735 (dp4736 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p4737 sg22 I00 sg37 g38 sg39 g4737 sbag3 (g7 g8 NtRp4738 (dp4739 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp4740 (dp4741 g18 g3 (g19 g5 (ltRp4742 (dp4743 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4744 (dp4745 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4746 (dp4747 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4748 (dp4749 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Decompressed Content Bytes Received' p4750 sg22 I00 sg37 g38 sg39 g4750 sbag3 (g7 g8 NtRp4751 (dp4752 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp4753 (dp4754 g18 g3 (g19 g5 (ltRp4755 (dp4756 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4757 (dp4758 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4759 (dp4760 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4761 (dp4762 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p4763 sg22 I00 sg37 g38 sg39 g4763 sbag3 (g7 g8 NtRp4764 (dp4765 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp4766 (dp4767 g18 g3 (g19 g5 (ltRp4768 (dp4769 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4770 (dp4771 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4772 (dp4773 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4774 (dp4775 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p4776 sg22 I00 sg37 g38 sg39 g4776 sbag3 (g7 g8 NtRp4777 (dp4778 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp4779 (dp4780 g18 g3 (g19 g5 (ltRp4781 (dp4782 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4783 (dp4784 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4785 (dp4786 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4787 (dp4788 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected' p4789 sg22 I00 sg37 g38 sg39 g4789 sbag3 (g7 g8 NtRp4790 (dp4791 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp4792 (dp4793 g18 g3 (g19 g5 (ltRp4794 (dp4795 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4796 (dp4797 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4798 (dp4799 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4800 (dp4801 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Path Match Failed)' p4802 sg22 I00 sg37 g38 sg39 g4802 sbag3 (g7 g8 NtRp4803 (dp4804 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp4805 (dp4806 g18 g3 (g19 g5 (ltRp4807 (dp4808 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4809 (dp4810 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4811 (dp4812 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4813 (dp4814 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Domain Match Failed)' p4815 sg22 I00 sg37 g38 sg39 g4815 sbag3 (g7 g8 NtRp4816 (dp4817 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp4818 (dp4819 g18 g3 (g19 g5 (ltRp4820 (dp4821 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4822 (dp4823 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4824 (dp4825 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4826 (dp4827 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Cookiejar Overflow)' p4828 sg22 I00 sg37 g38 sg39 g4828 sbag3 (g7 g8 NtRp4829 (dp4830 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp4831 (dp4832 g18 g3 (g19 g5 (ltRp4833 (dp4834 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4835 (dp4836 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4837 (dp4838 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4839 (dp4840 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Probabilistic Reject)' p4841 sg22 I00 sg37 g38 sg39 g4841 sbag3 (g7 g8 NtRp4842 (dp4843 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp4844 (dp4845 g18 g3 (g19 g5 (ltRp4846 (dp4847 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4848 (dp4849 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4850 (dp4851 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4852 (dp4853 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookie headers Rejected - (Memory Overflow)' p4854 sg22 I00 sg37 g38 sg39 g4854 sbag3 (g7 g8 NtRp4855 (dp4856 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp4857 (dp4858 g18 g3 (g19 g5 (ltRp4859 (dp4860 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4861 (dp4862 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4863 (dp4864 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4865 (dp4866 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connect Time (us)' p4867 sg22 I00 sg37 g261 sg39 g4867 sbag3 (g7 g8 NtRp4868 (dp4869 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp4870 (dp4871 g18 g3 (g19 g5 (ltRp4872 (dp4873 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4874 (dp4875 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4876 (dp4877 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4878 (dp4879 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To First Byte (us)' p4880 sg22 I00 sg37 g261 sg39 g4880 sbag3 (g7 g8 NtRp4881 (dp4882 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp4883 (dp4884 g18 g3 (g19 g5 (ltRp4885 (dp4886 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4887 (dp4888 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4889 (dp4890 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4891 (dp4892 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To Last Byte (us)' p4893 sg22 I00 sg37 g261 sg39 g4893 sbag3 (g7 g8 NtRp4894 (dp4895 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp4896 (dp4897 g18 g3 (g19 g5 (ltRp4898 (dp4899 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4900 (dp4901 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4902 (dp4903 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4904 (dp4905 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Average (us)' p4906 sg22 I00 sg37 g261 sg39 g4906 sbag3 (g7 g8 NtRp4907 (dp4908 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp4909 (dp4910 g18 g3 (g19 g5 (ltRp4911 (dp4912 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4913 (dp4914 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4915 (dp4916 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4917 (dp4918 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Minimum (us)' p4919 sg22 I00 sg37 g38 sg39 g4919 sbag3 (g7 g8 NtRp4920 (dp4921 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp4922 (dp4923 g18 g3 (g19 g5 (ltRp4924 (dp4925 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4926 (dp4927 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4928 (dp4929 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4930 (dp4931 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Maximum (us)' p4932 sg22 I00 sg37 g38 sg39 g4932 sbag3 (g7 g8 NtRp4933 (dp4934 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp4935 (dp4936 g18 g3 (g19 g5 (ltRp4937 (dp4938 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4939 (dp4940 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4941 (dp4942 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4943 (dp4944 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Failed' p4945 sg22 I00 sg37 g38 sg39 g4945 sbag3 (g7 g8 NtRp4946 (dp4947 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp4948 (dp4949 g18 g3 (g19 g5 (ltRp4950 (dp4951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4952 (dp4953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4954 (dp4955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4956 (dp4957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Succeeded' p4958 sg22 I00 sg37 g38 sg39 g4958 sbag3 (g7 g8 NtRp4959 (dp4960 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp4961 (dp4962 g18 g3 (g19 g5 (ltRp4963 (dp4964 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4965 (dp4966 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4967 (dp4968 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4969 (dp4970 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Received' p4971 sg22 I00 sg37 g38 sg39 g4971 sbag3 (g7 g8 NtRp4972 (dp4973 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp4974 (dp4975 g18 g3 (g19 g5 (ltRp4976 (dp4977 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4978 (dp4979 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4980 (dp4981 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4982 (dp4983 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Received' p4984 sg22 I00 sg37 g38 sg39 g4984 sbag3 (g7 g8 NtRp4985 (dp4986 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp4987 (dp4988 g18 g3 (g19 g5 (ltRp4989 (dp4990 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4991 (dp4992 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4993 (dp4994 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4995 (dp4996 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Received' p4997 sg22 I00 sg37 g38 sg39 g4997 sbag3 (g7 g8 NtRp4998 (dp4999 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp5000 (dp5001 g18 g3 (g19 g5 (ltRp5002 (dp5003 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5004 (dp5005 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5006 (dp5007 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5008 (dp5009 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Received' p5010 sg22 I00 sg37 g38 sg39 g5010 sbag3 (g7 g8 NtRp5011 (dp5012 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp5013 (dp5014 g18 g3 (g19 g5 (ltRp5015 (dp5016 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5017 (dp5018 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5019 (dp5020 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5021 (dp5022 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Received' p5023 sg22 I00 sg37 g38 sg39 g5023 sbag3 (g7 g8 NtRp5024 (dp5025 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp5026 (dp5027 g18 g3 (g19 g5 (ltRp5028 (dp5029 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5030 (dp5031 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5032 (dp5033 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5034 (dp5035 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Received' p5036 sg22 I00 sg37 g38 sg39 g5036 sbag3 (g7 g8 NtRp5037 (dp5038 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp5039 (dp5040 g18 g3 (g19 g5 (ltRp5041 (dp5042 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5043 (dp5044 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5045 (dp5046 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5047 (dp5048 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Received' p5049 sg22 I00 sg37 g38 sg39 g5049 sbag3 (g7 g8 NtRp5050 (dp5051 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp5052 (dp5053 g18 g3 (g19 g5 (ltRp5054 (dp5055 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5056 (dp5057 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5058 (dp5059 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5060 (dp5061 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Received' p5062 sg22 I00 sg37 g38 sg39 g5062 sbag3 (g7 g8 NtRp5063 (dp5064 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp5065 (dp5066 g18 g3 (g19 g5 (ltRp5067 (dp5068 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5069 (dp5070 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5071 (dp5072 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5073 (dp5074 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Received' p5075 sg22 I00 sg37 g38 sg39 g5075 sbag3 (g7 g8 NtRp5076 (dp5077 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp5078 (dp5079 g18 g3 (g19 g5 (ltRp5080 (dp5081 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5082 (dp5083 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5084 (dp5085 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5086 (dp5087 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Received' p5088 sg22 I00 sg37 g38 sg39 g5088 sbag3 (g7 g8 NtRp5089 (dp5090 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp5091 (dp5092 g18 g3 (g19 g5 (ltRp5093 (dp5094 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5095 (dp5096 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5097 (dp5098 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5099 (dp5100 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Sent' p5101 sg22 I00 sg37 g38 sg39 g5101 sbag3 (g7 g8 NtRp5102 (dp5103 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp5104 (dp5105 g18 g3 (g19 g5 (ltRp5106 (dp5107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5108 (dp5109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5110 (dp5111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5112 (dp5113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Sent' p5114 sg22 I00 sg37 g38 sg39 g5114 sbag3 (g7 g8 NtRp5115 (dp5116 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp5117 (dp5118 g18 g3 (g19 g5 (ltRp5119 (dp5120 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5121 (dp5122 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5123 (dp5124 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5125 (dp5126 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Sent' p5127 sg22 I00 sg37 g38 sg39 g5127 sbag3 (g7 g8 NtRp5128 (dp5129 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp5130 (dp5131 g18 g3 (g19 g5 (ltRp5132 (dp5133 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5134 (dp5135 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5136 (dp5137 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5138 (dp5139 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Sent' p5140 sg22 I00 sg37 g38 sg39 g5140 sbag3 (g7 g8 NtRp5141 (dp5142 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp5143 (dp5144 g18 g3 (g19 g5 (ltRp5145 (dp5146 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5147 (dp5148 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5149 (dp5150 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5151 (dp5152 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Sent' p5153 sg22 I00 sg37 g38 sg39 g5153 sbag3 (g7 g8 NtRp5154 (dp5155 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp5156 (dp5157 g18 g3 (g19 g5 (ltRp5158 (dp5159 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5160 (dp5161 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5162 (dp5163 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5164 (dp5165 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Sent' p5166 sg22 I00 sg37 g38 sg39 g5166 sbag3 (g7 g8 NtRp5167 (dp5168 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp5169 (dp5170 g18 g3 (g19 g5 (ltRp5171 (dp5172 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5173 (dp5174 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5175 (dp5176 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5177 (dp5178 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Sent' p5179 sg22 I00 sg37 g38 sg39 g5179 sbag3 (g7 g8 NtRp5180 (dp5181 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp5182 (dp5183 g18 g3 (g19 g5 (ltRp5184 (dp5185 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5186 (dp5187 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5188 (dp5189 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5190 (dp5191 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Sent' p5192 sg22 I00 sg37 g38 sg39 g5192 sbag3 (g7 g8 NtRp5193 (dp5194 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp5195 (dp5196 g18 g3 (g19 g5 (ltRp5197 (dp5198 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5199 (dp5200 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5201 (dp5202 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5203 (dp5204 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Sent' p5205 sg22 I00 sg37 g38 sg39 g5205 sbag3 (g7 g8 NtRp5206 (dp5207 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp5208 (dp5209 g18 g3 (g19 g5 (ltRp5210 (dp5211 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5212 (dp5213 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5214 (dp5215 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5216 (dp5217 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Sent' p5218 sg22 I00 sg37 g38 sg39 g5218 sbag3 (g7 g8 NtRp5219 (dp5220 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp5221 (dp5222 g18 g3 (g19 g5 (ltRp5223 (dp5224 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5225 (dp5226 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5227 (dp5228 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5229 (dp5230 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Client' p5231 sg22 I00 sg37 g38 sg39 g5231 sbag3 (g7 g8 NtRp5232 (dp5233 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp5234 (dp5235 g18 g3 (g19 g5 (ltRp5236 (dp5237 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5238 (dp5239 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5240 (dp5241 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5242 (dp5243 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Server' p5244 sg22 I00 sg37 g38 sg39 g5244 sbag3 (g7 g8 NtRp5245 (dp5246 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp5247 (dp5248 g18 g3 (g19 g5 (ltRp5249 (dp5250 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5251 (dp5252 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5253 (dp5254 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5255 (dp5256 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Client to Server)' p5257 sg22 I00 sg37 g38 sg39 g5257 sbag3 (g7 g8 NtRp5258 (dp5259 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp5260 (dp5261 g18 g3 (g19 g5 (ltRp5262 (dp5263 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5264 (dp5265 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5266 (dp5267 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5268 (dp5269 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Server to Client)' p5270 sg22 I00 sg37 g38 sg39 g5270 sbag3 (g7 g8 NtRp5271 (dp5272 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp5273 (dp5274 g18 g3 (g19 g5 (ltRp5275 (dp5276 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5277 (dp5278 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5279 (dp5280 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5281 (dp5282 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Client to Server)' p5283 sg22 I00 sg37 g38 sg39 g5283 sbag3 (g7 g8 NtRp5284 (dp5285 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp5286 (dp5287 g18 g3 (g19 g5 (ltRp5288 (dp5289 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5290 (dp5291 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5292 (dp5293 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5294 (dp5295 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Server to Client)' p5296 sg22 I00 sg37 g38 sg39 g5296 sbag3 (g7 g8 NtRp5297 (dp5298 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp5299 (dp5300 g18 g3 (g19 g5 (ltRp5301 (dp5302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5303 (dp5304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5305 (dp5306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5307 (dp5308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Succeeded' p5309 sg22 I00 sg37 g38 sg39 g5309 sbag3 (g7 g8 NtRp5310 (dp5311 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp5312 (dp5313 g18 g3 (g19 g5 (ltRp5314 (dp5315 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5316 (dp5317 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5318 (dp5319 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5320 (dp5321 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Failed' p5322 sg22 I00 sg37 g38 sg39 g5322 sbag3 (g7 g8 NtRp5323 (dp5324 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp5325 (dp5326 g18 g3 (g19 g5 (ltRp5327 (dp5328 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5329 (dp5330 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5331 (dp5332 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5333 (dp5334 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Protocol Error' p5335 sg22 I00 sg37 g38 sg39 g5335 sbag3 (g7 g8 NtRp5336 (dp5337 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp5338 (dp5339 g18 g3 (g19 g5 (ltRp5340 (dp5341 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5342 (dp5343 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5344 (dp5345 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5346 (dp5347 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Internal Error' p5348 sg22 I00 sg37 g38 sg39 g5348 sbag3 (g7 g8 NtRp5349 (dp5350 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp5351 (dp5352 g18 g3 (g19 g5 (ltRp5353 (dp5354 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5355 (dp5356 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5357 (dp5358 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5359 (dp5360 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Flow Control Error' p5361 sg22 I00 sg37 g38 sg39 g5361 sbag3 (g7 g8 NtRp5362 (dp5363 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp5364 (dp5365 g18 g3 (g19 g5 (ltRp5366 (dp5367 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5368 (dp5369 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5370 (dp5371 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5372 (dp5373 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Timeout Error' p5374 sg22 I00 sg37 g38 sg39 g5374 sbag3 (g7 g8 NtRp5375 (dp5376 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp5377 (dp5378 g18 g3 (g19 g5 (ltRp5379 (dp5380 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5381 (dp5382 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5383 (dp5384 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5385 (dp5386 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Closed Error' p5387 sg22 I00 sg37 g38 sg39 g5387 sbag3 (g7 g8 NtRp5388 (dp5389 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp5390 (dp5391 g18 g3 (g19 g5 (ltRp5392 (dp5393 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5394 (dp5395 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5396 (dp5397 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5398 (dp5399 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Frame Size Error' p5400 sg22 I00 sg37 g38 sg39 g5400 sbag3 (g7 g8 NtRp5401 (dp5402 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp5403 (dp5404 g18 g3 (g19 g5 (ltRp5405 (dp5406 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5407 (dp5408 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5409 (dp5410 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5411 (dp5412 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Refused Stream Error' p5413 sg22 I00 sg37 g38 sg39 g5413 sbag3 (g7 g8 NtRp5414 (dp5415 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp5416 (dp5417 g18 g3 (g19 g5 (ltRp5418 (dp5419 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5420 (dp5421 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5422 (dp5423 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5424 (dp5425 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Cancelled Error' p5426 sg22 I00 sg37 g38 sg39 g5426 sbag3 (g7 g8 NtRp5427 (dp5428 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp5429 (dp5430 g18 g3 (g19 g5 (ltRp5431 (dp5432 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5433 (dp5434 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5435 (dp5436 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5437 (dp5438 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Compression Error' p5439 sg22 I00 sg37 g38 sg39 g5439 sbag3 (g7 g8 NtRp5440 (dp5441 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp5442 (dp5443 g18 g3 (g19 g5 (ltRp5444 (dp5445 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5446 (dp5447 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5448 (dp5449 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5450 (dp5451 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connect Error' p5452 sg22 I00 sg37 g38 sg39 g5452 sbag3 (g7 g8 NtRp5453 (dp5454 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp5455 (dp5456 g18 g3 (g19 g5 (ltRp5457 (dp5458 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5459 (dp5460 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5461 (dp5462 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5463 (dp5464 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Enhance Calm Error' p5465 sg22 I00 sg37 g38 sg39 g5465 sbag3 (g7 g8 NtRp5466 (dp5467 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp5468 (dp5469 g18 g3 (g19 g5 (ltRp5470 (dp5471 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5472 (dp5473 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5474 (dp5475 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5476 (dp5477 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Inadequate Security Error' p5478 sg22 I00 sg37 g38 sg39 g5478 sbag3 (g7 g8 NtRp5479 (dp5480 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp5481 (dp5482 g18 g3 (g19 g5 (ltRp5483 (dp5484 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5485 (dp5486 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5487 (dp5488 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5489 (dp5490 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 HTTP1_1 Required Error' p5491 sg22 I00 sg37 g38 sg39 g5491 sbag3 (g7 g8 NtRp5492 (dp5493 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp5494 (dp5495 g18 g3 (g19 g5 (ltRp5496 (dp5497 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5498 (dp5499 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5500 (dp5501 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5502 (dp5503 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p5504 sg22 I00 sg37 g38 sg39 g5504 sbag3 (g7 g8 NtRp5505 (dp5506 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp5507 (dp5508 g18 g3 (g19 g5 (ltRp5509 (dp5510 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5511 (dp5512 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5513 (dp5514 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5515 (dp5516 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p5517 sg22 I00 sg37 g38 sg39 g5517 sbag3 (g7 g8 NtRp5518 (dp5519 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp5520 (dp5521 g18 g3 (g19 g5 (ltRp5522 (dp5523 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5524 (dp5525 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5526 (dp5527 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5528 (dp5529 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p5530 sg22 I00 sg37 g38 sg39 g5530 sbag3 (g7 g8 NtRp5531 (dp5532 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp5533 (dp5534 g18 g3 (g19 g5 (ltRp5535 (dp5536 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5537 (dp5538 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5539 (dp5540 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5541 (dp5542 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p5543 sg22 I00 sg37 g38 sg39 g5543 sbag3 (g7 g8 NtRp5544 (dp5545 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp5546 (dp5547 g18 g3 (g19 g5 (ltRp5548 (dp5549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5550 (dp5551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5552 (dp5553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5554 (dp5555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p5556 sg22 I00 sg37 g38 sg39 g5556 sbag3 (g7 g8 NtRp5557 (dp5558 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp5559 (dp5560 g18 g3 (g19 g5 (ltRp5561 (dp5562 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5563 (dp5564 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5565 (dp5566 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5567 (dp5568 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p5569 sg22 I00 sg37 g38 sg39 g5569 sbag3 (g7 g8 NtRp5570 (dp5571 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp5572 (dp5573 g18 g3 (g19 g5 (ltRp5574 (dp5575 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5576 (dp5577 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5578 (dp5579 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5580 (dp5581 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p5582 sg22 I00 sg37 g38 sg39 g5582 sbag3 (g7 g8 NtRp5583 (dp5584 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp5585 (dp5586 g18 g3 (g19 g5 (ltRp5587 (dp5588 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5589 (dp5590 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5591 (dp5592 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5593 (dp5594 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p5595 sg22 I00 sg37 g38 sg39 g5595 sbag3 (g7 g8 NtRp5596 (dp5597 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp5598 (dp5599 g18 g3 (g19 g5 (ltRp5600 (dp5601 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5602 (dp5603 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5604 (dp5605 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5606 (dp5607 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p5608 sg22 I00 sg37 g38 sg39 g5608 sbag3 (g7 g8 NtRp5609 (dp5610 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp5611 (dp5612 g18 g3 (g19 g5 (ltRp5613 (dp5614 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5615 (dp5616 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5617 (dp5618 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5619 (dp5620 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p5621 sg22 I00 sg37 g38 sg39 g5621 sbag3 (g7 g8 NtRp5622 (dp5623 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp5624 (dp5625 g18 g3 (g19 g5 (ltRp5626 (dp5627 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5628 (dp5629 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5630 (dp5631 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5632 (dp5633 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p5634 sg22 I00 sg37 g38 sg39 g5634 sbag3 (g7 g8 NtRp5635 (dp5636 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp5637 (dp5638 g18 g3 (g19 g5 (ltRp5639 (dp5640 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5641 (dp5642 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5643 (dp5644 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5645 (dp5646 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p5647 sg22 I00 sg37 g38 sg39 g5647 sbag3 (g7 g8 NtRp5648 (dp5649 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp5650 (dp5651 g18 g3 (g19 g5 (ltRp5652 (dp5653 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5654 (dp5655 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5656 (dp5657 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5658 (dp5659 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p5660 sg22 I00 sg37 g38 sg39 g5660 sbag3 (g7 g8 NtRp5661 (dp5662 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp5663 (dp5664 g18 g3 (g19 g5 (ltRp5665 (dp5666 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5667 (dp5668 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5669 (dp5670 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5671 (dp5672 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p5673 sg22 I00 sg37 g38 sg39 g5673 sbag3 (g7 g8 NtRp5674 (dp5675 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp5676 (dp5677 g18 g3 (g19 g5 (ltRp5678 (dp5679 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5680 (dp5681 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5682 (dp5683 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5684 (dp5685 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p5686 sg22 I00 sg37 g38 sg39 g5686 sbag3 (g7 g8 NtRp5687 (dp5688 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp5689 (dp5690 g18 g3 (g19 g5 (ltRp5691 (dp5692 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5693 (dp5694 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5695 (dp5696 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5697 (dp5698 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p5699 sg22 I00 sg37 g38 sg39 g5699 sbag3 (g7 g8 NtRp5700 (dp5701 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp5702 (dp5703 g18 g3 (g19 g5 (ltRp5704 (dp5705 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5706 (dp5707 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5708 (dp5709 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5710 (dp5711 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p5712 sg22 I00 sg37 g38 sg39 g5712 sbag3 (g7 g8 NtRp5713 (dp5714 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp5715 (dp5716 g18 g3 (g19 g5 (ltRp5717 (dp5718 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5719 (dp5720 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5721 (dp5722 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5723 (dp5724 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p5725 sg22 I00 sg37 g38 sg39 g5725 sbag3 (g7 g8 NtRp5726 (dp5727 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp5728 (dp5729 g18 g3 (g19 g5 (ltRp5730 (dp5731 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5732 (dp5733 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5734 (dp5735 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5736 (dp5737 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p5738 sg22 I00 sg37 g38 sg39 g5738 sbag3 (g7 g8 NtRp5739 (dp5740 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp5741 (dp5742 g18 g3 (g19 g5 (ltRp5743 (dp5744 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5745 (dp5746 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5747 (dp5748 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5749 (dp5750 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p5751 sg22 I00 sg37 g38 sg39 g5751 sbag3 (g7 g8 NtRp5752 (dp5753 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp5754 (dp5755 g18 g3 (g19 g5 (ltRp5756 (dp5757 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5758 (dp5759 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5760 (dp5761 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5762 (dp5763 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p5764 sg22 I00 sg37 g38 sg39 g5764 sbag3 (g7 g8 NtRp5765 (dp5766 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp5767 (dp5768 g18 g3 (g19 g5 (ltRp5769 (dp5770 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5771 (dp5772 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5773 (dp5774 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5775 (dp5776 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p5777 sg22 I00 sg37 g38 sg39 g5777 sbag3 (g7 g8 NtRp5778 (dp5779 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp5780 (dp5781 g18 g3 (g19 g5 (ltRp5782 (dp5783 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5784 (dp5785 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5786 (dp5787 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5788 (dp5789 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p5790 sg22 I00 sg37 g38 sg39 g5790 sbag3 (g7 g8 NtRp5791 (dp5792 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp5793 (dp5794 g18 g3 (g19 g5 (ltRp5795 (dp5796 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5797 (dp5798 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5799 (dp5800 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5801 (dp5802 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p5803 sg22 I00 sg37 g38 sg39 g5803 sbag3 (g7 g8 NtRp5804 (dp5805 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp5806 (dp5807 g18 g3 (g19 g5 (ltRp5808 (dp5809 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5810 (dp5811 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5812 (dp5813 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5814 (dp5815 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p5816 sg22 I00 sg37 g38 sg39 g5816 sbag3 (g7 g8 NtRp5817 (dp5818 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp5819 (dp5820 g18 g3 (g19 g5 (ltRp5821 (dp5822 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5823 (dp5824 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5825 (dp5826 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5827 (dp5828 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p5829 sg22 I00 sg37 g38 sg39 g5829 sbag3 (g7 g8 NtRp5830 (dp5831 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp5832 (dp5833 g18 g3 (g19 g5 (ltRp5834 (dp5835 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5836 (dp5837 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5838 (dp5839 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5840 (dp5841 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p5842 sg22 I00 sg37 g38 sg39 g5842 sbag3 (g7 g8 NtRp5843 (dp5844 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp5845 (dp5846 g18 g3 (g19 g5 (ltRp5847 (dp5848 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5849 (dp5850 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5851 (dp5852 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5853 (dp5854 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p5855 sg22 I00 sg37 g38 sg39 g5855 sbag3 (g7 g8 NtRp5856 (dp5857 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp5858 (dp5859 g18 g3 (g19 g5 (ltRp5860 (dp5861 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5862 (dp5863 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5864 (dp5865 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5866 (dp5867 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p5868 sg22 I00 sg37 g38 sg39 g5868 sbag3 (g7 g8 NtRp5869 (dp5870 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp5871 (dp5872 g18 g3 (g19 g5 (ltRp5873 (dp5874 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5875 (dp5876 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5877 (dp5878 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5879 (dp5880 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p5881 sg22 I00 sg37 g38 sg39 g5881 sbag3 (g7 g8 NtRp5882 (dp5883 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp5884 (dp5885 g18 g3 (g19 g5 (ltRp5886 (dp5887 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5888 (dp5889 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5890 (dp5891 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5892 (dp5893 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p5894 sg22 I00 sg37 g38 sg39 g5894 sbag3 (g7 g8 NtRp5895 (dp5896 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp5897 (dp5898 g18 g3 (g19 g5 (ltRp5899 (dp5900 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5901 (dp5902 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5903 (dp5904 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5905 (dp5906 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p5907 sg22 I00 sg37 g38 sg39 g5907 sbag3 (g7 g8 NtRp5908 (dp5909 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp5910 (dp5911 g18 g3 (g19 g5 (ltRp5912 (dp5913 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5914 (dp5915 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5916 (dp5917 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5918 (dp5919 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p5920 sg22 I00 sg37 g38 sg39 g5920 sbag3 (g7 g8 NtRp5921 (dp5922 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp5923 (dp5924 g18 g3 (g19 g5 (ltRp5925 (dp5926 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5927 (dp5928 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5929 (dp5930 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5931 (dp5932 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p5933 sg22 I00 sg37 g38 sg39 g5933 sbag3 (g7 g8 NtRp5934 (dp5935 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp5936 (dp5937 g18 g3 (g19 g5 (ltRp5938 (dp5939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5940 (dp5941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5942 (dp5943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5944 (dp5945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p5946 sg22 I00 sg37 g38 sg39 g5946 sbag3 (g7 g8 NtRp5947 (dp5948 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp5949 (dp5950 g18 g3 (g19 g5 (ltRp5951 (dp5952 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5953 (dp5954 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5955 (dp5956 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5957 (dp5958 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p5959 sg22 I00 sg37 g38 sg39 g5959 sbag3 (g7 g8 NtRp5960 (dp5961 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp5962 (dp5963 g18 g3 (g19 g5 (ltRp5964 (dp5965 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5966 (dp5967 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5968 (dp5969 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5970 (dp5971 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p5972 sg22 I00 sg37 g38 sg39 g5972 sbag3 (g7 g8 NtRp5973 (dp5974 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp5975 (dp5976 g18 g3 (g19 g5 (ltRp5977 (dp5978 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5979 (dp5980 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5981 (dp5982 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5983 (dp5984 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p5985 sg22 I00 sg37 g38 sg39 g5985 sbag3 (g7 g8 NtRp5986 (dp5987 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp5988 (dp5989 g18 g3 (g19 g5 (ltRp5990 (dp5991 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5992 (dp5993 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5994 (dp5995 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5996 (dp5997 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p5998 sg22 I00 sg37 g38 sg39 g5998 sbag3 (g7 g8 NtRp5999 (dp6000 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp6001 (dp6002 g18 g3 (g19 g5 (ltRp6003 (dp6004 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6005 (dp6006 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6007 (dp6008 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6009 (dp6010 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p6011 sg22 I00 sg37 g38 sg39 g6011 sbag3 (g7 g8 NtRp6012 (dp6013 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp6014 (dp6015 g18 g3 (g19 g5 (ltRp6016 (dp6017 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6018 (dp6019 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6020 (dp6021 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6022 (dp6023 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p6024 sg22 I00 sg37 g38 sg39 g6024 sbag3 (g7 g8 NtRp6025 (dp6026 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp6027 (dp6028 g18 g3 (g19 g5 (ltRp6029 (dp6030 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6031 (dp6032 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6033 (dp6034 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6035 (dp6036 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p6037 sg22 I00 sg37 g38 sg39 g6037 sbag3 (g7 g8 NtRp6038 (dp6039 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp6040 (dp6041 g18 g3 (g19 g5 (ltRp6042 (dp6043 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6044 (dp6045 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6046 (dp6047 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6048 (dp6049 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p6050 sg22 I00 sg37 g38 sg39 g6050 sbag3 (g7 g8 NtRp6051 (dp6052 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp6053 (dp6054 g18 g3 (g19 g5 (ltRp6055 (dp6056 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6057 (dp6058 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6059 (dp6060 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6061 (dp6062 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p6063 sg22 I00 sg37 g38 sg39 g6063 sbag3 (g7 g8 NtRp6064 (dp6065 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp6066 (dp6067 g18 g3 (g19 g5 (ltRp6068 (dp6069 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6070 (dp6071 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6072 (dp6073 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6074 (dp6075 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p6076 sg22 I00 sg37 g38 sg39 g6076 sbag3 (g7 g8 NtRp6077 (dp6078 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp6079 (dp6080 g18 g3 (g19 g5 (ltRp6081 (dp6082 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6083 (dp6084 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6085 (dp6086 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6087 (dp6088 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p6089 sg22 I00 sg37 g38 sg39 g6089 sbag3 (g7 g8 NtRp6090 (dp6091 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp6092 (dp6093 g18 g3 (g19 g5 (ltRp6094 (dp6095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6096 (dp6097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6098 (dp6099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6100 (dp6101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p6102 sg22 I00 sg37 g38 sg39 g6102 sbag3 (g7 g8 NtRp6103 (dp6104 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp6105 (dp6106 g18 g3 (g19 g5 (ltRp6107 (dp6108 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6109 (dp6110 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6111 (dp6112 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6113 (dp6114 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p6115 sg22 I00 sg37 g38 sg39 g6115 sbag3 (g7 g8 NtRp6116 (dp6117 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp6118 (dp6119 g18 g3 (g19 g5 (ltRp6120 (dp6121 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6122 (dp6123 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6124 (dp6125 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6126 (dp6127 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p6128 sg22 I00 sg37 g38 sg39 g6128 sbag3 (g7 g8 NtRp6129 (dp6130 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp6131 (dp6132 g18 g3 (g19 g5 (ltRp6133 (dp6134 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6135 (dp6136 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6137 (dp6138 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6139 (dp6140 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p6141 sg22 I00 sg37 g38 sg39 g6141 sbag3 (g7 g8 NtRp6142 (dp6143 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp6144 (dp6145 g18 g3 (g19 g5 (ltRp6146 (dp6147 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6148 (dp6149 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6150 (dp6151 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6152 (dp6153 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p6154 sg22 I00 sg37 g38 sg39 g6154 sbag3 (g7 g8 NtRp6155 (dp6156 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp6157 (dp6158 g18 g3 (g19 g5 (ltRp6159 (dp6160 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6161 (dp6162 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6163 (dp6164 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6165 (dp6166 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p6167 sg22 I00 sg37 g38 sg39 g6167 sbag3 (g7 g8 NtRp6168 (dp6169 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp6170 (dp6171 g18 g3 (g19 g5 (ltRp6172 (dp6173 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6174 (dp6175 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6176 (dp6177 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6178 (dp6179 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p6180 sg22 I00 sg37 g38 sg39 g6180 sbag3 (g7 g8 NtRp6181 (dp6182 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp6183 (dp6184 g18 g3 (g19 g5 (ltRp6185 (dp6186 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6187 (dp6188 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6189 (dp6190 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6191 (dp6192 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p6193 sg22 I00 sg37 g38 sg39 g6193 sbag3 (g7 g8 NtRp6194 (dp6195 g11 Nsg12 I186 sg13 I01 sg14 g3 (g15 g8 NtRp6196 (dp6197 g18 g3 (g19 g5 (ltRp6198 (dp6199 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6200 (dp6201 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6202 (dp6203 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6204 (dp6205 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p6206 sg22 I00 sg37 g38 sg39 g6206 sbag3 (g7 g8 NtRp6207 (dp6208 g11 Nsg12 I187 sg13 I01 sg14 g3 (g15 g8 NtRp6209 (dp6210 g18 g3 (g19 g5 (ltRp6211 (dp6212 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6213 (dp6214 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6215 (dp6216 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6217 (dp6218 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p6219 sg22 I00 sg37 g38 sg39 g6219 sbag3 (g7 g8 NtRp6220 (dp6221 g11 Nsg12 I188 sg13 I01 sg14 g3 (g15 g8 NtRp6222 (dp6223 g18 g3 (g19 g5 (ltRp6224 (dp6225 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6226 (dp6227 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6228 (dp6229 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6230 (dp6231 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p6232 sg22 I00 sg37 g38 sg39 g6232 sbag3 (g7 g8 NtRp6233 (dp6234 g11 Nsg12 I189 sg13 I01 sg14 g3 (g15 g8 NtRp6235 (dp6236 g18 g3 (g19 g5 (ltRp6237 (dp6238 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6239 (dp6240 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6241 (dp6242 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6243 (dp6244 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p6245 sg22 I00 sg37 g38 sg39 g6245 sbag3 (g7 g8 NtRp6246 (dp6247 g11 Nsg12 I190 sg13 I01 sg14 g3 (g15 g8 NtRp6248 (dp6249 g18 g3 (g19 g5 (ltRp6250 (dp6251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6252 (dp6253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6254 (dp6255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6256 (dp6257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p6258 sg22 I00 sg37 g38 sg39 g6258 sbag3 (g7 g8 NtRp6259 (dp6260 g11 Nsg12 I191 sg13 I01 sg14 g3 (g15 g8 NtRp6261 (dp6262 g18 g3 (g19 g5 (ltRp6263 (dp6264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6265 (dp6266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6267 (dp6268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6269 (dp6270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p6271 sg22 I00 sg37 g38 sg39 g6271 sbag3 (g7 g8 NtRp6272 (dp6273 g11 Nsg12 I192 sg13 I01 sg14 g3 (g15 g8 NtRp6274 (dp6275 g18 g3 (g19 g5 (ltRp6276 (dp6277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6278 (dp6279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6280 (dp6281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6282 (dp6283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p6284 sg22 I00 sg37 g38 sg39 g6284 sbag3 (g7 g8 NtRp6285 (dp6286 g11 Nsg12 I193 sg13 I01 sg14 g3 (g15 g8 NtRp6287 (dp6288 g18 g3 (g19 g5 (ltRp6289 (dp6290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6291 (dp6292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6293 (dp6294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6295 (dp6296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p6297 sg22 I00 sg37 g38 sg39 g6297 sbag3 (g7 g8 NtRp6298 (dp6299 g11 Nsg12 I194 sg13 I01 sg14 g3 (g15 g8 NtRp6300 (dp6301 g18 g3 (g19 g5 (ltRp6302 (dp6303 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6304 (dp6305 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6306 (dp6307 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6308 (dp6309 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p6310 sg22 I00 sg37 g38 sg39 g6310 sbag3 (g7 g8 NtRp6311 (dp6312 g11 Nsg12 I195 sg13 I01 sg14 g3 (g15 g8 NtRp6313 (dp6314 g18 g3 (g19 g5 (ltRp6315 (dp6316 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6317 (dp6318 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6319 (dp6320 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6321 (dp6322 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p6323 sg22 I00 sg37 g38 sg39 g6323 sbag3 (g7 g8 NtRp6324 (dp6325 g11 Nsg12 I196 sg13 I01 sg14 g3 (g15 g8 NtRp6326 (dp6327 g18 g3 (g19 g5 (ltRp6328 (dp6329 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6330 (dp6331 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6332 (dp6333 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6334 (dp6335 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p6336 sg22 I00 sg37 g38 sg39 g6336 sbag3 (g7 g8 NtRp6337 (dp6338 g11 Nsg12 I197 sg13 I01 sg14 g3 (g15 g8 NtRp6339 (dp6340 g18 g3 (g19 g5 (ltRp6341 (dp6342 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6343 (dp6344 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6345 (dp6346 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6347 (dp6348 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p6349 sg22 I00 sg37 g38 sg39 g6349 sbag3 (g7 g8 NtRp6350 (dp6351 g11 Nsg12 I198 sg13 I01 sg14 g3 (g15 g8 NtRp6352 (dp6353 g18 g3 (g19 g5 (ltRp6354 (dp6355 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6356 (dp6357 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6358 (dp6359 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6360 (dp6361 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p6362 sg22 I00 sg37 g38 sg39 g6362 sbag3 (g7 g8 NtRp6363 (dp6364 g11 Nsg12 I199 sg13 I01 sg14 g3 (g15 g8 NtRp6365 (dp6366 g18 g3 (g19 g5 (ltRp6367 (dp6368 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6369 (dp6370 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6371 (dp6372 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6373 (dp6374 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p6375 sg22 I00 sg37 g38 sg39 g6375 sbag3 (g7 g8 NtRp6376 (dp6377 g11 Nsg12 I200 sg13 I01 sg14 g3 (g15 g8 NtRp6378 (dp6379 g18 g3 (g19 g5 (ltRp6380 (dp6381 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6382 (dp6383 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6384 (dp6385 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6386 (dp6387 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p6388 sg22 I00 sg37 g38 sg39 g6388 sbag3 (g7 g8 NtRp6389 (dp6390 g11 Nsg12 I201 sg13 I01 sg14 g3 (g15 g8 NtRp6391 (dp6392 g18 g3 (g19 g5 (ltRp6393 (dp6394 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6395 (dp6396 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6397 (dp6398 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6399 (dp6400 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p6401 sg22 I00 sg37 g38 sg39 g6401 sbag3 (g7 g8 NtRp6402 (dp6403 g11 Nsg12 I202 sg13 I01 sg14 g3 (g15 g8 NtRp6404 (dp6405 g18 g3 (g19 g5 (ltRp6406 (dp6407 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6408 (dp6409 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6410 (dp6411 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6412 (dp6413 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p6414 sg22 I00 sg37 g38 sg39 g6414 sbag3 (g7 g8 NtRp6415 (dp6416 g11 Nsg12 I203 sg13 I01 sg14 g3 (g15 g8 NtRp6417 (dp6418 g18 g3 (g19 g5 (ltRp6419 (dp6420 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6421 (dp6422 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6423 (dp6424 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6425 (dp6426 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p6427 sg22 I00 sg37 g38 sg39 g6427 sbag3 (g7 g8 NtRp6428 (dp6429 g11 Nsg12 I204 sg13 I01 sg14 g3 (g15 g8 NtRp6430 (dp6431 g18 g3 (g19 g5 (ltRp6432 (dp6433 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6434 (dp6435 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6436 (dp6437 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6438 (dp6439 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p6440 sg22 I00 sg37 g38 sg39 g6440 sbag3 (g7 g8 NtRp6441 (dp6442 g11 Nsg12 I205 sg13 I01 sg14 g3 (g15 g8 NtRp6443 (dp6444 g18 g3 (g19 g5 (ltRp6445 (dp6446 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6447 (dp6448 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6449 (dp6450 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6451 (dp6452 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p6453 sg22 I00 sg37 g38 sg39 g6453 sbag3 (g7 g8 NtRp6454 (dp6455 g11 Nsg12 I206 sg13 I01 sg14 g3 (g15 g8 NtRp6456 (dp6457 g18 g3 (g19 g5 (ltRp6458 (dp6459 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6460 (dp6461 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6462 (dp6463 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6464 (dp6465 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p6466 sg22 I00 sg37 g38 sg39 g6466 sbag3 (g7 g8 NtRp6467 (dp6468 g11 Nsg12 I207 sg13 I01 sg14 g3 (g15 g8 NtRp6469 (dp6470 g18 g3 (g19 g5 (ltRp6471 (dp6472 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6473 (dp6474 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6475 (dp6476 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6477 (dp6478 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p6479 sg22 I00 sg37 g38 sg39 g6479 sbag3 (g7 g8 NtRp6480 (dp6481 g11 Nsg12 I208 sg13 I01 sg14 g3 (g15 g8 NtRp6482 (dp6483 g18 g3 (g19 g5 (ltRp6484 (dp6485 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6486 (dp6487 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6488 (dp6489 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6490 (dp6491 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p6492 sg22 I00 sg37 g38 sg39 g6492 sbag3 (g7 g8 NtRp6493 (dp6494 g11 Nsg12 I209 sg13 I01 sg14 g3 (g15 g8 NtRp6495 (dp6496 g18 g3 (g19 g5 (ltRp6497 (dp6498 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6499 (dp6500 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6501 (dp6502 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6503 (dp6504 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p6505 sg22 I00 sg37 g38 sg39 g6505 sbag3 (g7 g8 NtRp6506 (dp6507 g11 Nsg12 I210 sg13 I01 sg14 g3 (g15 g8 NtRp6508 (dp6509 g18 g3 (g19 g5 (ltRp6510 (dp6511 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6512 (dp6513 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6514 (dp6515 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6516 (dp6517 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p6518 sg22 I00 sg37 g38 sg39 g6518 sbag3 (g7 g8 NtRp6519 (dp6520 g11 Nsg12 I211 sg13 I01 sg14 g3 (g15 g8 NtRp6521 (dp6522 g18 g3 (g19 g5 (ltRp6523 (dp6524 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6525 (dp6526 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6527 (dp6528 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6529 (dp6530 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p6531 sg22 I00 sg37 g38 sg39 g6531 sbag3 (g7 g8 NtRp6532 (dp6533 g11 Nsg12 I212 sg13 I01 sg14 g3 (g15 g8 NtRp6534 (dp6535 g18 g3 (g19 g5 (ltRp6536 (dp6537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6538 (dp6539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6540 (dp6541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6542 (dp6543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p6544 sg22 I00 sg37 g38 sg39 g6544 sbag3 (g7 g8 NtRp6545 (dp6546 g11 Nsg12 I213 sg13 I01 sg14 g3 (g15 g8 NtRp6547 (dp6548 g18 g3 (g19 g5 (ltRp6549 (dp6550 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6551 (dp6552 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6553 (dp6554 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6555 (dp6556 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p6557 sg22 I00 sg37 g38 sg39 g6557 sbag3 (g7 g8 NtRp6558 (dp6559 g11 Nsg12 I214 sg13 I01 sg14 g3 (g15 g8 NtRp6560 (dp6561 g18 g3 (g19 g5 (ltRp6562 (dp6563 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6564 (dp6565 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6566 (dp6567 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6568 (dp6569 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p6570 sg22 I00 sg37 g38 sg39 g6570 sbag3 (g7 g8 NtRp6571 (dp6572 g11 Nsg12 I215 sg13 I01 sg14 g3 (g15 g8 NtRp6573 (dp6574 g18 g3 (g19 g5 (ltRp6575 (dp6576 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6577 (dp6578 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6579 (dp6580 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6581 (dp6582 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p6583 sg22 I00 sg37 g38 sg39 g6583 sbag3 (g7 g8 NtRp6584 (dp6585 g11 Nsg12 I216 sg13 I01 sg14 g3 (g15 g8 NtRp6586 (dp6587 g18 g3 (g19 g5 (ltRp6588 (dp6589 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6590 (dp6591 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6592 (dp6593 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6594 (dp6595 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p6596 sg22 I00 sg37 g38 sg39 g6596 sbag3 (g7 g8 NtRp6597 (dp6598 g11 Nsg12 I217 sg13 I01 sg14 g3 (g15 g8 NtRp6599 (dp6600 g18 g3 (g19 g5 (ltRp6601 (dp6602 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6603 (dp6604 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6605 (dp6606 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6607 (dp6608 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p6609 sg22 I00 sg37 g38 sg39 g6609 sbag3 (g7 g8 NtRp6610 (dp6611 g11 Nsg12 I218 sg13 I01 sg14 g3 (g15 g8 NtRp6612 (dp6613 g18 g3 (g19 g5 (ltRp6614 (dp6615 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6616 (dp6617 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6618 (dp6619 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6620 (dp6621 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p6622 sg22 I00 sg37 g38 sg39 g6622 sbag3 (g7 g8 NtRp6623 (dp6624 g11 Nsg12 I219 sg13 I01 sg14 g3 (g15 g8 NtRp6625 (dp6626 g18 g3 (g19 g5 (ltRp6627 (dp6628 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6629 (dp6630 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6631 (dp6632 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6633 (dp6634 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p6635 sg22 I00 sg37 g38 sg39 g6635 sbag3 (g7 g8 NtRp6636 (dp6637 g11 Nsg12 I220 sg13 I01 sg14 g3 (g15 g8 NtRp6638 (dp6639 g18 g3 (g19 g5 (ltRp6640 (dp6641 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6642 (dp6643 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6644 (dp6645 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6646 (dp6647 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p6648 sg22 I00 sg37 g38 sg39 g6648 sbag3 (g7 g8 NtRp6649 (dp6650 g11 Nsg12 I221 sg13 I01 sg14 g3 (g15 g8 NtRp6651 (dp6652 g18 g3 (g19 g5 (ltRp6653 (dp6654 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6655 (dp6656 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6657 (dp6658 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6659 (dp6660 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p6661 sg22 I00 sg37 g38 sg39 g6661 sbag3 (g7 g8 NtRp6662 (dp6663 g11 Nsg12 I222 sg13 I01 sg14 g3 (g15 g8 NtRp6664 (dp6665 g18 g3 (g19 g5 (ltRp6666 (dp6667 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6668 (dp6669 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6670 (dp6671 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6672 (dp6673 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p6674 sg22 I00 sg37 g38 sg39 g6674 sbag3 (g7 g8 NtRp6675 (dp6676 g11 Nsg12 I223 sg13 I01 sg14 g3 (g15 g8 NtRp6677 (dp6678 g18 g3 (g19 g5 (ltRp6679 (dp6680 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6681 (dp6682 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6683 (dp6684 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6685 (dp6686 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p6687 sg22 I00 sg37 g38 sg39 g6687 sbag3 (g7 g8 NtRp6688 (dp6689 g11 Nsg12 I224 sg13 I01 sg14 g3 (g15 g8 NtRp6690 (dp6691 g18 g3 (g19 g5 (ltRp6692 (dp6693 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6694 (dp6695 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6696 (dp6697 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6698 (dp6699 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p6700 sg22 I00 sg37 g38 sg39 g6700 sbag3 (g7 g8 NtRp6701 (dp6702 g11 Nsg12 I225 sg13 I01 sg14 g3 (g15 g8 NtRp6703 (dp6704 g18 g3 (g19 g5 (ltRp6705 (dp6706 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6707 (dp6708 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6709 (dp6710 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6711 (dp6712 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p6713 sg22 I00 sg37 g38 sg39 g6713 sbag3 (g7 g8 NtRp6714 (dp6715 g11 Nsg12 I226 sg13 I01 sg14 g3 (g15 g8 NtRp6716 (dp6717 g18 g3 (g19 g5 (ltRp6718 (dp6719 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6720 (dp6721 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6722 (dp6723 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6724 (dp6725 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p6726 sg22 I00 sg37 g38 sg39 g6726 sbag3 (g7 g8 NtRp6727 (dp6728 g11 Nsg12 I227 sg13 I01 sg14 g3 (g15 g8 NtRp6729 (dp6730 g18 g3 (g19 g5 (ltRp6731 (dp6732 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6733 (dp6734 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6735 (dp6736 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6737 (dp6738 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p6739 sg22 I00 sg37 g38 sg39 g6739 sbag3 (g7 g8 NtRp6740 (dp6741 g11 Nsg12 I228 sg13 I01 sg14 g3 (g15 g8 NtRp6742 (dp6743 g18 g3 (g19 g5 (ltRp6744 (dp6745 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6746 (dp6747 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6748 (dp6749 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6750 (dp6751 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p6752 sg22 I00 sg37 g38 sg39 g6752 sbag3 (g7 g8 NtRp6753 (dp6754 g11 Nsg12 I229 sg13 I01 sg14 g3 (g15 g8 NtRp6755 (dp6756 g18 g3 (g19 g5 (ltRp6757 (dp6758 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6759 (dp6760 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6761 (dp6762 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6763 (dp6764 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p6765 sg22 I00 sg37 g38 sg39 g6765 sbag3 (g7 g8 NtRp6766 (dp6767 g11 Nsg12 I230 sg13 I01 sg14 g3 (g15 g8 NtRp6768 (dp6769 g18 g3 (g19 g5 (ltRp6770 (dp6771 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6772 (dp6773 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6774 (dp6775 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6776 (dp6777 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p6778 sg22 I00 sg37 g38 sg39 g6778 sbag3 (g7 g8 NtRp6779 (dp6780 g11 Nsg12 I231 sg13 I01 sg14 g3 (g15 g8 NtRp6781 (dp6782 g18 g3 (g19 g5 (ltRp6783 (dp6784 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6785 (dp6786 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6787 (dp6788 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6789 (dp6790 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p6791 sg22 I00 sg37 g38 sg39 g6791 sbag3 (g7 g8 NtRp6792 (dp6793 g11 Nsg12 I232 sg13 I01 sg14 g3 (g15 g8 NtRp6794 (dp6795 g18 g3 (g19 g5 (ltRp6796 (dp6797 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6798 (dp6799 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6800 (dp6801 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6802 (dp6803 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p6804 sg22 I00 sg37 g38 sg39 g6804 sbag3 (g7 g8 NtRp6805 (dp6806 g11 Nsg12 I233 sg13 I01 sg14 g3 (g15 g8 NtRp6807 (dp6808 g18 g3 (g19 g5 (ltRp6809 (dp6810 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6811 (dp6812 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6813 (dp6814 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6815 (dp6816 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p6817 sg22 I00 sg37 g38 sg39 g6817 sbag3 (g7 g8 NtRp6818 (dp6819 g11 Nsg12 I234 sg13 I01 sg14 g3 (g15 g8 NtRp6820 (dp6821 g18 g3 (g19 g5 (ltRp6822 (dp6823 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6824 (dp6825 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6826 (dp6827 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6828 (dp6829 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p6830 sg22 I00 sg37 g38 sg39 g6830 sbag3 (g7 g8 NtRp6831 (dp6832 g11 Nsg12 I235 sg13 I01 sg14 g3 (g15 g8 NtRp6833 (dp6834 g18 g3 (g19 g5 (ltRp6835 (dp6836 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6837 (dp6838 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6839 (dp6840 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6841 (dp6842 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p6843 sg22 I00 sg37 g38 sg39 g6843 sbag3 (g7 g8 NtRp6844 (dp6845 g11 Nsg12 I236 sg13 I01 sg14 g3 (g15 g8 NtRp6846 (dp6847 g18 g3 (g19 g5 (ltRp6848 (dp6849 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6850 (dp6851 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6852 (dp6853 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6854 (dp6855 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p6856 sg22 I00 sg37 g38 sg39 g6856 sbag3 (g7 g8 NtRp6857 (dp6858 g11 Nsg12 I237 sg13 I01 sg14 g3 (g15 g8 NtRp6859 (dp6860 g18 g3 (g19 g5 (ltRp6861 (dp6862 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6863 (dp6864 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6865 (dp6866 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6867 (dp6868 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p6869 sg22 I00 sg37 g38 sg39 g6869 sbag3 (g7 g8 NtRp6870 (dp6871 g11 Nsg12 I238 sg13 I01 sg14 g3 (g15 g8 NtRp6872 (dp6873 g18 g3 (g19 g5 (ltRp6874 (dp6875 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6876 (dp6877 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6878 (dp6879 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6880 (dp6881 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p6882 sg22 I00 sg37 g38 sg39 g6882 sbag3 (g7 g8 NtRp6883 (dp6884 g11 Nsg12 I239 sg13 I01 sg14 g3 (g15 g8 NtRp6885 (dp6886 g18 g3 (g19 g5 (ltRp6887 (dp6888 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6889 (dp6890 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6891 (dp6892 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6893 (dp6894 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p6895 sg22 I00 sg37 g38 sg39 g6895 sbag3 (g7 g8 NtRp6896 (dp6897 g11 Nsg12 I240 sg13 I01 sg14 g3 (g15 g8 NtRp6898 (dp6899 g18 g3 (g19 g5 (ltRp6900 (dp6901 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6902 (dp6903 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6904 (dp6905 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6906 (dp6907 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p6908 sg22 I00 sg37 g38 sg39 g6908 sbag3 (g7 g8 NtRp6909 (dp6910 g11 Nsg12 I241 sg13 I01 sg14 g3 (g15 g8 NtRp6911 (dp6912 g18 g3 (g19 g5 (ltRp6913 (dp6914 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6915 (dp6916 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6917 (dp6918 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6919 (dp6920 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p6921 sg22 I00 sg37 g38 sg39 g6921 sbag3 (g7 g8 NtRp6922 (dp6923 g11 Nsg12 I242 sg13 I01 sg14 g3 (g15 g8 NtRp6924 (dp6925 g18 g3 (g19 g5 (ltRp6926 (dp6927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6928 (dp6929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6930 (dp6931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6932 (dp6933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p6934 sg22 I00 sg37 g38 sg39 g6934 sbag3 (g7 g8 NtRp6935 (dp6936 g11 Nsg12 I243 sg13 I01 sg14 g3 (g15 g8 NtRp6937 (dp6938 g18 g3 (g19 g5 (ltRp6939 (dp6940 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6941 (dp6942 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6943 (dp6944 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6945 (dp6946 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p6947 sg22 I00 sg37 g38 sg39 g6947 sbag3 (g7 g8 NtRp6948 (dp6949 g11 Nsg12 I244 sg13 I01 sg14 g3 (g15 g8 NtRp6950 (dp6951 g18 g3 (g19 g5 (ltRp6952 (dp6953 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6954 (dp6955 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6956 (dp6957 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6958 (dp6959 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p6960 sg22 I00 sg37 g38 sg39 g6960 sbatRp6961 (dp6962 g12 I244 sg22 I00 sg11 Nsbs.</svRestConfiguration> </statManagerOptions> <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-256K.rxf b/samples/vnf_samples/traffic_profiles/ixload/HTTP-Transactions_2Ports.rxf index b74e39ca2..d440d91fe 100644 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-256K.rxf +++ b/samples/vnf_samples/traffic_profiles/ixload/HTTP-Transactions_2Ports.rxf @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <root ver="[21, [1, [0, [0]]]]" type="ixRepository"> <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> + <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="628fdbe1-4254-48b1-8765-a4d5bbafd1ff" version="6.70.442"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442"> <name type="String">uplink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.442"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.442"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.442"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442"> <name type="String">downlink_0</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.442"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise2500Full type="Bool">1</advertise2500Full> <advertise5000Full type="Bool">1</advertise5000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.442"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.442"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.442"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.442"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.442"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.442" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.442"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.442"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.442"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.442"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.442"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.442"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.80.2"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.442"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.442"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.442"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.442" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.442"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.442"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.442" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.442" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.80.2"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.80.2"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.80.2"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.80.2"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <payloadAttrTypes type="ListNode" /> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.442"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> </_smSessionXml> <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> <xml type="str"></xml> @@ -10,11 +10,11 @@ <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> </_quickTestConfig> <lastApiUniqueId type="int">15481</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_2Ports-CC-256K.rxf</name> + <version type="str">8.30.115.152</version> + <name type="str">HTTP-Transactions_2Ports.rxf</name> <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_2Ports-CC-64K.rxf</last> + <path type="str">C:\ixload</path> + <last type="str">HTTP-Transactions_2Ports.rxf</last> <activeTest type="str">Test1</activeTest> <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> @@ -54,8 +54,8 @@ <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> <name type="str">Client</name> <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> + <item ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> + <name type="str">HTTP client@uplink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -98,8 +98,8 @@ <inUse type="bool">True</inUse> <customPortMap type="NoneType">None</customPortMap> <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> + <destinationCommunity ver="[1, [24, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> + <name type="str">HTTP server@downlink_0</name> <column type="NoneType">None</column> <scenarioElementType type="str">netTraffic</scenarioElementType> <enable type="int">1</enable> @@ -484,7 +484,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> + <name type="str">downlink_0</name> <role type="str">Server</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -498,7 +498,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> + <name type="str">Network Range IP-R2 in downlink_0 (152.40.40.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -743,6 +743,7 @@ <browserEmulationName type="str">Custom1</browserEmulationName> <enableSsl type="int">0</enableSsl> <sslVersion type="int">3</sslVersion> + <disableMacValidation type="int">0</disableMacValidation> <sslReuseMethod type="int">0</sslReuseMethod> <sequentialSessionReuse type="int">0</sequentialSessionReuse> <enablesslRecordSize type="int">0</enablesslRecordSize> @@ -807,7 +808,7 @@ </item> </outputList> <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/256k.html</pageObject> + <pageObject type="str">/1b.html</pageObject> <abort type="str">None</abort> <arguments type="str"></arguments> <namevalueargs type="str"></namevalueargs> @@ -862,12 +863,16 @@ <ipPreference type="int">2</ipPreference> <tcpCloseOption type="int">0</tcpCloseOption> <piggybackAck type="int">1</piggybackAck> + <tcpFastOpen type="int">0</tcpFastOpen> <enableLargeHeader type="int">0</enableLargeHeader> <maxHeaderLen type="int">1024</maxHeaderLen> <useAllIPs type="int">0</useAllIPs> <enableDecompressSupport type="int">0</enableDecompressSupport> <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> + <enableAuth type="int">0</enableAuth> + <authProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthProfileList" itemtype="ixAuthProfile"/> + <ipMappingList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAuthIpMapList" itemtype="ixAuthIpMap"/> <uniqueID type="int">1</uniqueID> <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> @@ -889,7 +894,7 @@ </traffic> <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> + <name type="str">uplink_0</name> <role type="str">Client</role> <networkType type="str">none</networkType> <aggregation type="int">0</aggregation> @@ -903,7 +908,7 @@ <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> + <name type="str">Network Range IP-R1 in uplink_0 (152.16.100.20+1)</name> <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> <name type="str">DistGroup1</name> <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> @@ -1031,15 +1036,15 @@ <role type="str">Client</role> <activeRole type="str">Client</activeRole> <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> + <objectiveType type="str">transactionRate</objectiveType> + <objectiveValue type="int">500000</objectiveValue> + <userObjectiveType type="str">transactionRate</userObjectiveType> + <userObjectiveValue type="long">500000</userObjectiveValue> + <constraintType type="str">SimulatedUserConstraint</constraintType> <constraintValue type="int">100</constraintValue> <timerGranularity type="int">100</timerGranularity> <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> + <secondaryConstraintType type="str">SimulatedUserConstraint</secondaryConstraintType> <secondaryConstraintValue type="int">100</secondaryConstraintValue> <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> <portMapPolicy type="str">portMesh</portMapPolicy> @@ -1050,7 +1055,7 @@ <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> <objectID type="int">0</objectID> <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> + <_objectiveValue type="int">500000</_objectiveValue> <timelineScale type="float">1.0</timelineScale> </item> </activityParameters> @@ -1110,16 +1115,16 @@ <iterationTime type="int">620</iterationTime> <totalTime type="int">620</totalTime> <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> + <objectiveType type="str">transactionRate</objectiveType> + <objectiveValue type="int">500000</objectiveValue> <rampUpType type="int">-1</rampUpType> <rampUpValue type="int">30000</rampUpValue> <rampUpInterval type="int">1</rampUpInterval> <rampUpTime type="int">0</rampUpTime> <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> + <userObjectiveType type="str">transactionRate</userObjectiveType> + <userObjectiveValue type="long">500000</userObjectiveValue> + <totalUserObjectiveValue type="long">500000</totalUserObjectiveValue> <objectID type="int">0</objectID> <_apiUniqueId type="int">12925</_apiUniqueId> <isVisible type="bool">True</isVisible> @@ -1258,7 +1263,7 @@ <pollingInterval type="int">2</pollingInterval> <allowCsvLogging type="bool">False</allowCsvLogging> <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6&EOXC@8_BL1*U6[TN9P(-!2VA'EF$9# 1'FD+:KRB2&>B<DC.UPS&K_ M^]K.00@)K78_M''\/.]AY[']FLZ'_=I7MHA0' 9W-: 9M0_W'8=!]@6C'2)' MJ*DU#<W0S%:SQ@F(BMX1IDSYA YW-;AA>(^A1K?:1EA0A@(7:3G>5P(W'.+& MO<EX/AC/%?V^,YT-'-[LSNW)N/C^,NC;\^[#:"" WN3IP1X/^EEHFK7>D\!9 M\/O.D* ?$><<E"WT(W17,VLR$-V.PM4*!ZNT?PA]BB0VQVOD' +W ;W"+0Y) MRC RE#*XWDP)<K',+,'K$A^L"$]&3.O\L$$I!B0VX=/LA]";DI AE^5LYR1" MA<0>L>>A0#BBYSD. KCP41\RZ+"0H'/"]#@[^3P:9=87(_&$)A';1"R;R:?( M9WCC%\<F27WG#=H3W O949Y?+Z(L7'_DW^PUXS33F$/LHRED&2+[NSXBC*9/ MA6LZH.T]Q7>U5\8V;5W?[7;:KJZ%9*6;A@'T;T\CQWU%:ZCB@'\T/AFUS,I[ MVTH&U=.H?;2$?$QRGD[?).T4[I$P40%!B*.%]QGT</B1A-&F ." W9L=73PZ M>B6KYV,4L&%(UI$/'<08UTOV[?Z^^F7?O^7_NK=7/Z*0W7Z)%W?\THX?0+/B MQN]G;#& A/O'$?SSV/SGV(R7!%\0LR@HYG'EL]N3?2>-;,0-A:LD]+A% D1L MJ8)FW/YPM6*WN<RXJR2*'2Q#!Q$,??P3BB7T %<Y)<3F[Y9#DLE1$^^SCUFG M.2J*R'+]PI+9X"K'+E_I&UKDQ4PQGC%<(X&*-A"=>KZWW*8'&5J%Y" 88@GK MC_/Y-+/-H^?VO>4J75B",&P_V]_LKCH?.'/G6?A1M\.O+_9TVW@QIR%7O=KK MJ>!!(_NEC%"P+T\0D70 'CT.ZMA[;M6/Y)@5O1)^W"4BOL!QWN*(-":+O\3. MNT7T$NL1KUY]_L<J6=G^RFR^=S*\Q(@(INNYUF+A>JJ%W(7: #<+=6$"I()6 MRS"0Z0&S;LDYJ7)P'HJ+*:\3_@J U91.<M"YW6>*B&/W!>BH0+54$Z@MTZHW M+*M15YN&"9H\F6O5,EMFO64V#+5N-&]NFBWI.F==FA+7-V'(FP2"81J@I0*@ M&JTYJ+>M1AM86M,TK&M@JL9UVS#2;$^L*OR&_ SG#(4OYW: _61),GY")JNU MXI/$F^(3=%]Q@-)IZ8^=CZH0>:S?,LH;GKJ>)TYTP03-&\VT&II9-S1@WAP- MVVUPNEGI52[.@]G[,6*[D'Q/MVG.NM;,N JK2V=EE N.9LA'D,JQV?L1KS>4 M:PT8RJ![ZBQ'N^ L7>N]]C/?S%8$KA6Q!5#EU_UU\[=GFU=CSW&49Y&U6HQ2 MO5?8^QG:\$T&D=RPZEI+C!RT$B\EE/(E^_G)<:$O1P.,1'"%_G-#9YN#/RWX M5BW,3GI+12HKDS,92N/W' "Y@P)17C/0R4:<9!4"Z86^S_<L4<9)12,&^0?P M8IF=8I7&(P1)@#QQ> K>4I1W>0<%O-+/T ]WLB"AI6Y.X4HO?.\33%D("J)< MVSDW1?R2HZ3TO^2K2*EVQ^ORT U].^"*6T(7E7LL954ZG8410S,8K,J]%> R M-^N-V#WFF5R*4U^&5^GRHMYB77J'0*B6W[=*3K\3RA=1Z)V1LJ574:T)=EQ9 M9[>T_W!!S IO<4$)_(-\!Z)CA(/OR#L6YD<;/5'"L45+<7&1O>]((2L!/R7N M:M);+7>#KIWB\5VFIH3$0T3>=:#+A4%':(O\]-*I2PM^HPW6F\O764Y(Z@-Y M9\G=9P74"X,E7D4$YF^08M8I!UT.RN^1O&\AB7.,#T]AGQRC4-9!Y\>KAZA+ ML%1( N;*7>Z5'VD^/\_2,DM\[210/JZ'MF\8Y!AZ/O/_JPUI+L8I'ME/'/?_ % D1BE1\ end </svConfiguration> + <svConfiguration type="str">begin 666 <data> M>)RE6&MSXC84_2L>.LVTT_HAFU<(R4X"9,,L"0QFT\XTG1UA"^)=8WLEF4<[ M_>^]DHTQQB:9]L,NLLZY5U?2T=55NA^V*U]9$\J\,+BN(<VH?;CIVASS9X]L M"#U 3:UI:(9F&<T:$ @3O2./<>43V5W7<,2]K8<UMM8B8<$X"1RBY7B_41P! M!,:]\=-L\#13])ON9#JPH7D[&XZ?BM]?!OWA[/9N-!! ;_QX-WP:]+.A6=9Z M3P G@]]T[RGY'@-GIZRQ'Y/KFEF3 ['U*%PNO6"Y[[_'/B,2FWDK8N\"YXZ\ MXK47TCW#R%#&\2J:4.)X,K(4MR0^6%((1BSK;!>1/88D-H9E]D/L3FC(B<-S MMC,:DT)@#Y[KDD X8J<Q#@(\]TD?<VSSD))3PN2P.ODXZF769T>"@,8QCV*> MK>1C[',O\HMSDZ2^_0;M$6^%[!C$UXL9#U<?8<]>,TYS/^:]YY,)YADB^V]] M0CG;_RJ@Z8!UMLR[KKUR'G5T?;/9:!M+"^E2-PT#Z;\_CFSGE:RPZ@6P:; 8 MM<S*?=M*#JKO1^V3!88YR74Z_I*T8[A'PU0%E!! "]]3['KA1QK&40'P GYC M=G7QT]4K63W?(P&_#^DJ]K%-. >]9'OW]\4/V_X5_'=[=?$]#OG5<W*XDX]. M\H.T1M+X]80M)I!R_SB ?QZ:_QR:R9& S&-@V(<%SZ_.LH[^Y&-I*& 2D(7 M+%(@Y@L5-9/VAXLEO\I%!J[248;!(K0)];#O_87%$;K#RYP2$O-WRR&-Y*") M]]DGK.,8%45$N?K"T]4 E7L.G/2(%7D)4\SG":^(0$4;B4X]WUMNT\.<+$.Z M$PQQA/6'V6R2V>;14_O>8KD_6(+0Z[QX6Y&07H0/=49QP+#,2^R+.0E!]1K= M+J3O@F5Y:(3N0W?983J'WE.K?BQGJ^B5\,,FE>\9COT61X0QGG\5.7=-V#G6 M@[=\]>$?KV1EF94/(6MR;^$1*IB.ZS3F<\=5&\29JW5T.5?G)B(J:K4,@Y@N M,JV&7),J!Z=#@8SR"H%/A!I-Z20'G=I]9H3:P[X ;16I#=5$JFDT3(2099@J M,EO0-HP6@O-6K]<OT:754MM6H]FN2^<Y^]*@0-N4$W<<"(9IH+:*8(#6#)F= M>JO3J&NHWFQ<6HU?#*-C&/MXCZPJ_(9P?P-#@:/<"3P_/8X<;L?TI%9L2I(0 M'['SZ@5DOS#V</0\&3T/[6G?-A(]EO+><'?KNN)*%TQD:*;5TF A-619![L% M:1N=CE7']4ZS;1D=/'<;'=-J_XC,XR2F5WD^C6&X?2)\$])O^_0-K#849AIH M0$,-4[HK(YUQ-24^P4Q.>K@=P<%7VAHRE,'ML;,<[8RS7!:!-+>D>*6(%,&4 MG[;MYL\O0ZC37I)17D3<ZN!6_1RYD)\*H5?GE.%V2B)(0X3FIF=I+5&A-MJI MEQ)*^='^_&@[V"?)/J:R+/2?&MKK'/QI#LE<F!WUEDI9UBXG8I7&[[DB<E<) M85!5L'$DTW*%7$/?A]PF"CUY*Q".82/<1'#'6*7QB& :$%=<KX*W$ 5@WD$! MK_1S[X<;6;*P4C?'<*47R)&"*4M%0909(.>FB)]SE#X.SODJ4JK=0>4>.J$_ M#$!Q"^R0<H^EK$JGTS#F9(J#9;FW ESF9A6)/#++Y%)<^C*\2I=G]9;HTMT% M0K7P(BNY)8\HSZ(4/"%E1Z^BGA/LI/;.WG'_X0F9E>;B"1/X._F-1,?("[X1 M]U"Z'VST5 F'%BO%Q5/WIBN%K 1PC5S7I+=:[HU=.\:3UTY-":E+J'P-80>$ MP49D3?S]LU27%O#F#5;1^0<O$-(Z0KYJ<B]> ?7"8.$M8XKS;TRQZ@Q !T"Y M'^GW&M,DQN2*%?;I98MEO71Z";N$.=23"DG!7$$,7N%R\^%FVY=C8K?3@?+C ;NF3]AD&.H><C_[_:D.9BGN(G^R/(S;_B7J!I end </svConfiguration> <svRestConfiguration type="str">(dp1 S'HTTP Server Per URL' p2 ccopy_reg _reconstructor p3 (cLib.Rest.ixPersistentStatSource ixConfiguredStatsList p4 c__builtin__ list p5 (lp6 g3 (cLib.Rest.ixPersistentStatSource ixConfiguredStat p7 c__builtin__ object p8 NtRp9 (dp10 S'proxyPropertyList' p11 NsS'_objectID' p12 I0 sS'enabled' p13 I01 sS'filterList' p14 g3 (cLib.Rest.ixPersistentStatSource ixRestFilters p15 g8 NtRp16 (dp17 S'cardFilters' p18 g3 (cLib.Rest.ixPersistentStatSource ixCardFilterList p19 g5 (ltRp20 (dp21 g12 I-1 sS'_resourceLocked' p22 I00 sg11 NsbsS'activityFilters' p23 g3 (cLib.Rest.ixPersistentStatSource ixActivityFilterList p24 g5 (ltRp25 (dp26 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sS'chassisFilters' p27 g3 (cLib.Rest.ixPersistentStatSource ixChassisFilterList p28 g5 (ltRp29 (dp30 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sS'portFilters' p31 g3 (cLib.Rest.ixPersistentStatSource ixPortFilterList p32 g5 (ltRp33 (dp34 g12 I-1 sg22 I00 sg11 NsbsbsS'caption' p35 S'HTTP Requests Received' p36 sg22 I00 sS'aggregationType' p37 S'kSum' p38 sS'statName' p39 g36 sbag3 (g7 g8 NtRp40 (dp41 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp42 (dp43 g18 g3 (g19 g5 (ltRp44 (dp45 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp46 (dp47 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp48 (dp49 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp50 (dp51 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp53 (dp54 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp55 (dp56 g18 g3 (g19 g5 (ltRp57 (dp58 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp59 (dp60 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp61 (dp62 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp63 (dp64 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp66 (dp67 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp68 (dp69 g18 g3 (g19 g5 (ltRp70 (dp71 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp72 (dp73 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp74 (dp75 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp76 (dp77 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (50x)' p78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp79 (dp80 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp81 (dp82 g18 g3 (g19 g5 (ltRp83 (dp84 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp85 (dp86 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp87 (dp88 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp89 (dp90 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write Error)' p91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp92 (dp93 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp94 (dp95 g18 g3 (g19 g5 (ltRp96 (dp97 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp98 (dp99 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp100 (dp101 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp102 (dp103 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent' p104 sg22 I00 sg37 g38 sg39 g104 sbag3 (g7 g8 NtRp105 (dp106 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp107 (dp108 g18 g3 (g19 g5 (ltRp109 (dp110 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp111 (dp112 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp113 (dp114 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp115 (dp116 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (1xx)' p117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp118 (dp119 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp120 (dp121 g18 g3 (g19 g5 (ltRp122 (dp123 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp124 (dp125 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp126 (dp127 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp128 (dp129 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (2xx)' p130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp131 (dp132 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp133 (dp134 g18 g3 (g19 g5 (ltRp135 (dp136 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp137 (dp138 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp139 (dp140 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp141 (dp142 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (3xx)' p143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp144 (dp145 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp146 (dp147 g18 g3 (g19 g5 (ltRp148 (dp149 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp150 (dp151 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp152 (dp153 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp154 (dp155 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (4xx)' p156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp157 (dp158 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp159 (dp160 g18 g3 (g19 g5 (ltRp161 (dp162 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp163 (dp164 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp165 (dp166 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp167 (dp168 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (5xx)' p169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp170 (dp171 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp172 (dp173 g18 g3 (g19 g5 (ltRp174 (dp175 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp176 (dp177 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp178 (dp179 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp180 (dp181 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (Other)' p182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp183 (dp184 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp185 (dp186 g18 g3 (g19 g5 (ltRp187 (dp188 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp189 (dp190 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp191 (dp192 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp193 (dp194 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Write Error)' p195 sg22 I00 sg37 g38 sg39 g195 sbag3 (g7 g8 NtRp196 (dp197 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp198 (dp199 g18 g3 (g19 g5 (ltRp200 (dp201 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp202 (dp203 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp204 (dp205 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp206 (dp207 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Aborted)' p208 sg22 I00 sg37 g38 sg39 g208 sbag3 (g7 g8 NtRp209 (dp210 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp211 (dp212 g18 g3 (g19 g5 (ltRp213 (dp214 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp215 (dp216 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp217 (dp218 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp219 (dp220 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Other)' p221 sg22 I00 sg37 g38 sg39 g221 sbag3 (g7 g8 NtRp222 (dp223 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp224 (dp225 g18 g3 (g19 g5 (ltRp226 (dp227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp228 (dp229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp230 (dp231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp232 (dp233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Sent' p234 sg22 I00 sg37 g38 sg39 g234 sbag3 (g7 g8 NtRp235 (dp236 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp237 (dp238 g18 g3 (g19 g5 (ltRp239 (dp240 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp241 (dp242 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp243 (dp244 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp245 (dp246 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp248 (dp249 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp250 (dp251 g18 g3 (g19 g5 (ltRp252 (dp253 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp254 (dp255 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp256 (dp257 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp258 (dp259 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p260 sg22 I00 sg37 S'kWeightedAverage' p261 sg39 g260 sbag3 (g7 g8 NtRp262 (dp263 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp264 (dp265 g18 g3 (g19 g5 (ltRp266 (dp267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp268 (dp269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp270 (dp271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp272 (dp273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p274 sg22 I00 sg37 g261 sg39 g274 sbag3 (g7 g8 NtRp275 (dp276 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp277 (dp278 g18 g3 (g19 g5 (ltRp279 (dp280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp281 (dp282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp283 (dp284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp285 (dp286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Received' p287 sg22 I00 sg37 g38 sg39 g287 sbag3 (g7 g8 NtRp288 (dp289 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp290 (dp291 g18 g3 (g19 g5 (ltRp292 (dp293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp294 (dp295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp296 (dp297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp298 (dp299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp301 (dp302 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp303 (dp304 g18 g3 (g19 g5 (ltRp305 (dp306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp307 (dp308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp309 (dp310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp311 (dp312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Received Chunk Size' p313 sg22 I00 sg37 g261 sg39 g313 sbag3 (g7 g8 NtRp314 (dp315 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp316 (dp317 g18 g3 (g19 g5 (ltRp318 (dp319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp320 (dp321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp322 (dp323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp324 (dp325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p326 sg22 I00 sg37 g261 sg39 g326 sbag3 (g7 g8 NtRp327 (dp328 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp329 (dp330 g18 g3 (g19 g5 (ltRp331 (dp332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp333 (dp334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp335 (dp336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp337 (dp338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Received' p339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp340 (dp341 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp342 (dp343 g18 g3 (g19 g5 (ltRp344 (dp345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp346 (dp347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp348 (dp349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp350 (dp351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Successful' p352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp353 (dp354 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp355 (dp356 g18 g3 (g19 g5 (ltRp357 (dp358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp359 (dp360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp361 (dp362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp363 (dp364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Failed' p365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp366 (dp367 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp368 (dp369 g18 g3 (g19 g5 (ltRp370 (dp371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp372 (dp373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp374 (dp375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp376 (dp377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Request Received' p378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp379 (dp380 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp381 (dp382 g18 g3 (g19 g5 (ltRp383 (dp384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp385 (dp386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp387 (dp388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp389 (dp390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Response Sent' p391 sg22 I00 sg37 g38 sg39 g391 sbatRp392 (dp393 g12 I27 sg22 I00 sg11 NsbsS'HTTP Server' p394 g3 (g4 g5 (lp395 g3 (g7 g8 NtRp396 (dp397 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp398 (dp399 g18 g3 (g19 g5 (ltRp400 (dp401 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp402 (dp403 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp404 (dp405 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp406 (dp407 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g36 sg22 I00 sg37 g38 sg39 g36 sbag3 (g7 g8 NtRp408 (dp409 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp410 (dp411 g18 g3 (g19 g5 (ltRp412 (dp413 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp414 (dp415 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp416 (dp417 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp418 (dp419 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp420 (dp421 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp422 (dp423 g18 g3 (g19 g5 (ltRp424 (dp425 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp426 (dp427 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp428 (dp429 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp430 (dp431 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p432 sg22 I00 sg37 g38 sg39 g432 sbag3 (g7 g8 NtRp433 (dp434 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp435 (dp436 g18 g3 (g19 g5 (ltRp437 (dp438 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp439 (dp440 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp441 (dp442 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp443 (dp444 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp445 (dp446 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp447 (dp448 g18 g3 (g19 g5 (ltRp449 (dp450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp451 (dp452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp453 (dp454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp455 (dp456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp457 (dp458 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp459 (dp460 g18 g3 (g19 g5 (ltRp461 (dp462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp463 (dp464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp465 (dp466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp467 (dp468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp469 (dp470 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp471 (dp472 g18 g3 (g19 g5 (ltRp473 (dp474 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp475 (dp476 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp477 (dp478 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp479 (dp480 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p481 sg22 I00 sg37 g38 sg39 g481 sbag3 (g7 g8 NtRp482 (dp483 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp484 (dp485 g18 g3 (g19 g5 (ltRp486 (dp487 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp488 (dp489 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp490 (dp491 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp492 (dp493 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p494 sg22 I00 sg37 g38 sg39 g494 sbag3 (g7 g8 NtRp495 (dp496 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp497 (dp498 g18 g3 (g19 g5 (ltRp499 (dp500 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp501 (dp502 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp503 (dp504 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp505 (dp506 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p507 sg22 I00 sg37 g38 sg39 g507 sbag3 (g7 g8 NtRp508 (dp509 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp510 (dp511 g18 g3 (g19 g5 (ltRp512 (dp513 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp514 (dp515 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp516 (dp517 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp518 (dp519 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp520 (dp521 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp522 (dp523 g18 g3 (g19 g5 (ltRp524 (dp525 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp526 (dp527 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp528 (dp529 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp530 (dp531 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp532 (dp533 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp534 (dp535 g18 g3 (g19 g5 (ltRp536 (dp537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp538 (dp539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp540 (dp541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp542 (dp543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp544 (dp545 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp546 (dp547 g18 g3 (g19 g5 (ltRp548 (dp549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp550 (dp551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp552 (dp553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp554 (dp555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp556 (dp557 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp558 (dp559 g18 g3 (g19 g5 (ltRp560 (dp561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp562 (dp563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp564 (dp565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp566 (dp567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp568 (dp569 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp570 (dp571 g18 g3 (g19 g5 (ltRp572 (dp573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp574 (dp575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp576 (dp577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp578 (dp579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp580 (dp581 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp582 (dp583 g18 g3 (g19 g5 (ltRp584 (dp585 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp586 (dp587 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp588 (dp589 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp590 (dp591 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p592 sg22 I00 sg37 g38 sg39 g592 sbag3 (g7 g8 NtRp593 (dp594 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp595 (dp596 g18 g3 (g19 g5 (ltRp597 (dp598 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp599 (dp600 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp601 (dp602 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp603 (dp604 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p605 sg22 I00 sg37 g38 sg39 g605 sbag3 (g7 g8 NtRp606 (dp607 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp608 (dp609 g18 g3 (g19 g5 (ltRp610 (dp611 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp612 (dp613 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp614 (dp615 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp616 (dp617 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p618 sg22 I00 sg37 g38 sg39 g618 sbag3 (g7 g8 NtRp619 (dp620 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp621 (dp622 g18 g3 (g19 g5 (ltRp623 (dp624 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp625 (dp626 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp627 (dp628 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp629 (dp630 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p631 sg22 I00 sg37 g38 sg39 g631 sbag3 (g7 g8 NtRp632 (dp633 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp634 (dp635 g18 g3 (g19 g5 (ltRp636 (dp637 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp638 (dp639 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp640 (dp641 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp642 (dp643 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p644 sg22 I00 sg37 g38 sg39 g644 sbag3 (g7 g8 NtRp645 (dp646 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp647 (dp648 g18 g3 (g19 g5 (ltRp649 (dp650 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp651 (dp652 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp653 (dp654 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp655 (dp656 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p657 sg22 I00 sg37 g38 sg39 g657 sbag3 (g7 g8 NtRp658 (dp659 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp660 (dp661 g18 g3 (g19 g5 (ltRp662 (dp663 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp664 (dp665 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp666 (dp667 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp668 (dp669 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Matching ServerID' p670 sg22 I00 sg37 g38 sg39 g670 sbag3 (g7 g8 NtRp671 (dp672 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp673 (dp674 g18 g3 (g19 g5 (ltRp675 (dp676 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp677 (dp678 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp679 (dp680 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp681 (dp682 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Non-matching ServerID' p683 sg22 I00 sg37 g38 sg39 g683 sbag3 (g7 g8 NtRp684 (dp685 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp686 (dp687 g18 g3 (g19 g5 (ltRp688 (dp689 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp690 (dp691 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp692 (dp693 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp694 (dp695 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Encoded Responses Sent' p696 sg22 I00 sg37 g38 sg39 g696 sbag3 (g7 g8 NtRp697 (dp698 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp699 (dp700 g18 g3 (g19 g5 (ltRp701 (dp702 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp703 (dp704 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp705 (dp706 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp707 (dp708 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp709 (dp710 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp711 (dp712 g18 g3 (g19 g5 (ltRp713 (dp714 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp715 (dp716 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp717 (dp718 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp719 (dp720 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Transfer-Encoded Requests Received' p721 sg22 I00 sg37 g38 sg39 g721 sbag3 (g7 g8 NtRp722 (dp723 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp724 (dp725 g18 g3 (g19 g5 (ltRp726 (dp727 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp728 (dp729 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp730 (dp731 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp732 (dp733 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp734 (dp735 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp736 (dp737 g18 g3 (g19 g5 (ltRp738 (dp739 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp740 (dp741 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp742 (dp743 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp744 (dp745 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp746 (dp747 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp748 (dp749 g18 g3 (g19 g5 (ltRp750 (dp751 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp752 (dp753 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp754 (dp755 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp756 (dp757 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp758 (dp759 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp760 (dp761 g18 g3 (g19 g5 (ltRp762 (dp763 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp764 (dp765 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp766 (dp767 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp768 (dp769 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp770 (dp771 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp772 (dp773 g18 g3 (g19 g5 (ltRp774 (dp775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp776 (dp777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp778 (dp779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp780 (dp781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp782 (dp783 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp784 (dp785 g18 g3 (g19 g5 (ltRp786 (dp787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp788 (dp789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp790 (dp791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp792 (dp793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g391 sg22 I00 sg37 g38 sg39 g391 sbag3 (g7 g8 NtRp794 (dp795 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp796 (dp797 g18 g3 (g19 g5 (ltRp798 (dp799 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp800 (dp801 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp802 (dp803 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp804 (dp805 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Sent' p806 sg22 I00 sg37 g38 sg39 g806 sbag3 (g7 g8 NtRp807 (dp808 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp809 (dp810 g18 g3 (g19 g5 (ltRp811 (dp812 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp813 (dp814 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp815 (dp816 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp817 (dp818 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Sent' p819 sg22 I00 sg37 g38 sg39 g819 sbag3 (g7 g8 NtRp820 (dp821 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp822 (dp823 g18 g3 (g19 g5 (ltRp824 (dp825 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp826 (dp827 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp828 (dp829 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp830 (dp831 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Sent' p832 sg22 I00 sg37 g38 sg39 g832 sbag3 (g7 g8 NtRp833 (dp834 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp835 (dp836 g18 g3 (g19 g5 (ltRp837 (dp838 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp839 (dp840 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp841 (dp842 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp843 (dp844 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Sent' p845 sg22 I00 sg37 g38 sg39 g845 sbag3 (g7 g8 NtRp846 (dp847 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp848 (dp849 g18 g3 (g19 g5 (ltRp850 (dp851 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp852 (dp853 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp854 (dp855 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp856 (dp857 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Sent' p858 sg22 I00 sg37 g38 sg39 g858 sbag3 (g7 g8 NtRp859 (dp860 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp861 (dp862 g18 g3 (g19 g5 (ltRp863 (dp864 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp865 (dp866 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp867 (dp868 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp869 (dp870 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Sent' p871 sg22 I00 sg37 g38 sg39 g871 sbag3 (g7 g8 NtRp872 (dp873 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp874 (dp875 g18 g3 (g19 g5 (ltRp876 (dp877 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp878 (dp879 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp880 (dp881 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp882 (dp883 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Sent' p884 sg22 I00 sg37 g38 sg39 g884 sbag3 (g7 g8 NtRp885 (dp886 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp887 (dp888 g18 g3 (g19 g5 (ltRp889 (dp890 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp891 (dp892 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp893 (dp894 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp895 (dp896 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Sent' p897 sg22 I00 sg37 g38 sg39 g897 sbag3 (g7 g8 NtRp898 (dp899 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp900 (dp901 g18 g3 (g19 g5 (ltRp902 (dp903 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp904 (dp905 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp906 (dp907 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp908 (dp909 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Sent' p910 sg22 I00 sg37 g38 sg39 g910 sbag3 (g7 g8 NtRp911 (dp912 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp913 (dp914 g18 g3 (g19 g5 (ltRp915 (dp916 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp917 (dp918 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp919 (dp920 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp921 (dp922 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Sent' p923 sg22 I00 sg37 g38 sg39 g923 sbag3 (g7 g8 NtRp924 (dp925 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp926 (dp927 g18 g3 (g19 g5 (ltRp928 (dp929 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp930 (dp931 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp932 (dp933 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp934 (dp935 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Received' p936 sg22 I00 sg37 g38 sg39 g936 sbag3 (g7 g8 NtRp937 (dp938 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp939 (dp940 g18 g3 (g19 g5 (ltRp941 (dp942 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp943 (dp944 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp945 (dp946 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp947 (dp948 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Received' p949 sg22 I00 sg37 g38 sg39 g949 sbag3 (g7 g8 NtRp950 (dp951 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp952 (dp953 g18 g3 (g19 g5 (ltRp954 (dp955 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp956 (dp957 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp958 (dp959 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp960 (dp961 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Received' p962 sg22 I00 sg37 g38 sg39 g962 sbag3 (g7 g8 NtRp963 (dp964 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp965 (dp966 g18 g3 (g19 g5 (ltRp967 (dp968 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp969 (dp970 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp971 (dp972 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp973 (dp974 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Received' p975 sg22 I00 sg37 g38 sg39 g975 sbag3 (g7 g8 NtRp976 (dp977 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp978 (dp979 g18 g3 (g19 g5 (ltRp980 (dp981 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp982 (dp983 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp984 (dp985 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp986 (dp987 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Received' p988 sg22 I00 sg37 g38 sg39 g988 sbag3 (g7 g8 NtRp989 (dp990 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp991 (dp992 g18 g3 (g19 g5 (ltRp993 (dp994 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp995 (dp996 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp997 (dp998 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp999 (dp1000 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Received' p1001 sg22 I00 sg37 g38 sg39 g1001 sbag3 (g7 g8 NtRp1002 (dp1003 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp1004 (dp1005 g18 g3 (g19 g5 (ltRp1006 (dp1007 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1008 (dp1009 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1010 (dp1011 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1012 (dp1013 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Received' p1014 sg22 I00 sg37 g38 sg39 g1014 sbag3 (g7 g8 NtRp1015 (dp1016 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp1017 (dp1018 g18 g3 (g19 g5 (ltRp1019 (dp1020 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1021 (dp1022 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1023 (dp1024 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1025 (dp1026 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Received' p1027 sg22 I00 sg37 g38 sg39 g1027 sbag3 (g7 g8 NtRp1028 (dp1029 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp1030 (dp1031 g18 g3 (g19 g5 (ltRp1032 (dp1033 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1034 (dp1035 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1036 (dp1037 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1038 (dp1039 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Received' p1040 sg22 I00 sg37 g38 sg39 g1040 sbag3 (g7 g8 NtRp1041 (dp1042 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp1043 (dp1044 g18 g3 (g19 g5 (ltRp1045 (dp1046 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1047 (dp1048 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1049 (dp1050 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1051 (dp1052 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Received' p1053 sg22 I00 sg37 g38 sg39 g1053 sbag3 (g7 g8 NtRp1054 (dp1055 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp1056 (dp1057 g18 g3 (g19 g5 (ltRp1058 (dp1059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1060 (dp1061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1062 (dp1063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1064 (dp1065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Client' p1066 sg22 I00 sg37 g38 sg39 g1066 sbag3 (g7 g8 NtRp1067 (dp1068 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp1069 (dp1070 g18 g3 (g19 g5 (ltRp1071 (dp1072 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1073 (dp1074 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1075 (dp1076 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1077 (dp1078 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Server' p1079 sg22 I00 sg37 g38 sg39 g1079 sbag3 (g7 g8 NtRp1080 (dp1081 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp1082 (dp1083 g18 g3 (g19 g5 (ltRp1084 (dp1085 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1086 (dp1087 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1088 (dp1089 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1090 (dp1091 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Client to Server' p1092 sg22 I00 sg37 g38 sg39 g1092 sbag3 (g7 g8 NtRp1093 (dp1094 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp1095 (dp1096 g18 g3 (g19 g5 (ltRp1097 (dp1098 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1099 (dp1100 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1101 (dp1102 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1103 (dp1104 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Server to Client' p1105 sg22 I00 sg37 g38 sg39 g1105 sbag3 (g7 g8 NtRp1106 (dp1107 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp1108 (dp1109 g18 g3 (g19 g5 (ltRp1110 (dp1111 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1112 (dp1113 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1114 (dp1115 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1116 (dp1117 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Client to Server' p1118 sg22 I00 sg37 g38 sg39 g1118 sbag3 (g7 g8 NtRp1119 (dp1120 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp1121 (dp1122 g18 g3 (g19 g5 (ltRp1123 (dp1124 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1125 (dp1126 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1127 (dp1128 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1129 (dp1130 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Server to Client' p1131 sg22 I00 sg37 g38 sg39 g1131 sbag3 (g7 g8 NtRp1132 (dp1133 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp1134 (dp1135 g18 g3 (g19 g5 (ltRp1136 (dp1137 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1138 (dp1139 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1140 (dp1141 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1142 (dp1143 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Succeeded' p1144 sg22 I00 sg37 g38 sg39 g1144 sbag3 (g7 g8 NtRp1145 (dp1146 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp1147 (dp1148 g18 g3 (g19 g5 (ltRp1149 (dp1150 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1151 (dp1152 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1153 (dp1154 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1155 (dp1156 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Failed' p1157 sg22 I00 sg37 g38 sg39 g1157 sbag3 (g7 g8 NtRp1158 (dp1159 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp1160 (dp1161 g18 g3 (g19 g5 (ltRp1162 (dp1163 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1164 (dp1165 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1166 (dp1167 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1168 (dp1169 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Protocol Error' p1170 sg22 I00 sg37 g38 sg39 g1170 sbag3 (g7 g8 NtRp1171 (dp1172 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp1173 (dp1174 g18 g3 (g19 g5 (ltRp1175 (dp1176 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1177 (dp1178 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1179 (dp1180 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1181 (dp1182 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Internal Error' p1183 sg22 I00 sg37 g38 sg39 g1183 sbag3 (g7 g8 NtRp1184 (dp1185 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp1186 (dp1187 g18 g3 (g19 g5 (ltRp1188 (dp1189 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1190 (dp1191 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1192 (dp1193 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1194 (dp1195 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Flow Control Error' p1196 sg22 I00 sg37 g38 sg39 g1196 sbag3 (g7 g8 NtRp1197 (dp1198 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp1199 (dp1200 g18 g3 (g19 g5 (ltRp1201 (dp1202 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1203 (dp1204 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1205 (dp1206 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1207 (dp1208 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Settings Timeout Error' p1209 sg22 I00 sg37 g38 sg39 g1209 sbag3 (g7 g8 NtRp1210 (dp1211 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp1212 (dp1213 g18 g3 (g19 g5 (ltRp1214 (dp1215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1216 (dp1217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1218 (dp1219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1220 (dp1221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Closed Error' p1222 sg22 I00 sg37 g38 sg39 g1222 sbag3 (g7 g8 NtRp1223 (dp1224 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp1225 (dp1226 g18 g3 (g19 g5 (ltRp1227 (dp1228 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1229 (dp1230 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1231 (dp1232 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1233 (dp1234 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Frame Size Error' p1235 sg22 I00 sg37 g38 sg39 g1235 sbag3 (g7 g8 NtRp1236 (dp1237 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp1238 (dp1239 g18 g3 (g19 g5 (ltRp1240 (dp1241 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1242 (dp1243 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1244 (dp1245 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1246 (dp1247 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Refused Stream Error' p1248 sg22 I00 sg37 g38 sg39 g1248 sbag3 (g7 g8 NtRp1249 (dp1250 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp1251 (dp1252 g18 g3 (g19 g5 (ltRp1253 (dp1254 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1255 (dp1256 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1257 (dp1258 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1259 (dp1260 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Cancelled Error' p1261 sg22 I00 sg37 g38 sg39 g1261 sbag3 (g7 g8 NtRp1262 (dp1263 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp1264 (dp1265 g18 g3 (g19 g5 (ltRp1266 (dp1267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1268 (dp1269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1270 (dp1271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1272 (dp1273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Compression Error' p1274 sg22 I00 sg37 g38 sg39 g1274 sbag3 (g7 g8 NtRp1275 (dp1276 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp1277 (dp1278 g18 g3 (g19 g5 (ltRp1279 (dp1280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1281 (dp1282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1283 (dp1284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1285 (dp1286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connect Error' p1287 sg22 I00 sg37 g38 sg39 g1287 sbag3 (g7 g8 NtRp1288 (dp1289 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp1290 (dp1291 g18 g3 (g19 g5 (ltRp1292 (dp1293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1294 (dp1295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1296 (dp1297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1298 (dp1299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Enhance Calm Error' p1300 sg22 I00 sg37 g38 sg39 g1300 sbag3 (g7 g8 NtRp1301 (dp1302 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp1303 (dp1304 g18 g3 (g19 g5 (ltRp1305 (dp1306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1307 (dp1308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1309 (dp1310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1311 (dp1312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Inadequate Security Error' p1313 sg22 I00 sg37 g38 sg39 g1313 sbag3 (g7 g8 NtRp1314 (dp1315 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp1316 (dp1317 g18 g3 (g19 g5 (ltRp1318 (dp1319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1320 (dp1321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1322 (dp1323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1324 (dp1325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HTTP1.1 Required Error' p1326 sg22 I00 sg37 g38 sg39 g1326 sbag3 (g7 g8 NtRp1327 (dp1328 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp1329 (dp1330 g18 g3 (g19 g5 (ltRp1331 (dp1332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1333 (dp1334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1335 (dp1336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1337 (dp1338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p1339 sg22 I00 sg37 g38 sg39 g1339 sbag3 (g7 g8 NtRp1340 (dp1341 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp1342 (dp1343 g18 g3 (g19 g5 (ltRp1344 (dp1345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1346 (dp1347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1348 (dp1349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1350 (dp1351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p1352 sg22 I00 sg37 g38 sg39 g1352 sbag3 (g7 g8 NtRp1353 (dp1354 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp1355 (dp1356 g18 g3 (g19 g5 (ltRp1357 (dp1358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1359 (dp1360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1361 (dp1362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1363 (dp1364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p1365 sg22 I00 sg37 g38 sg39 g1365 sbag3 (g7 g8 NtRp1366 (dp1367 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp1368 (dp1369 g18 g3 (g19 g5 (ltRp1370 (dp1371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1372 (dp1373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1374 (dp1375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1376 (dp1377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p1378 sg22 I00 sg37 g38 sg39 g1378 sbag3 (g7 g8 NtRp1379 (dp1380 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp1381 (dp1382 g18 g3 (g19 g5 (ltRp1383 (dp1384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1385 (dp1386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1387 (dp1388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1389 (dp1390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p1391 sg22 I00 sg37 g38 sg39 g1391 sbag3 (g7 g8 NtRp1392 (dp1393 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp1394 (dp1395 g18 g3 (g19 g5 (ltRp1396 (dp1397 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1398 (dp1399 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1400 (dp1401 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1402 (dp1403 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p1404 sg22 I00 sg37 g38 sg39 g1404 sbag3 (g7 g8 NtRp1405 (dp1406 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp1407 (dp1408 g18 g3 (g19 g5 (ltRp1409 (dp1410 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1411 (dp1412 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1413 (dp1414 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1415 (dp1416 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p1417 sg22 I00 sg37 g38 sg39 g1417 sbag3 (g7 g8 NtRp1418 (dp1419 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp1420 (dp1421 g18 g3 (g19 g5 (ltRp1422 (dp1423 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1424 (dp1425 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1426 (dp1427 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1428 (dp1429 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p1430 sg22 I00 sg37 g38 sg39 g1430 sbag3 (g7 g8 NtRp1431 (dp1432 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp1433 (dp1434 g18 g3 (g19 g5 (ltRp1435 (dp1436 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1437 (dp1438 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1439 (dp1440 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1441 (dp1442 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p1443 sg22 I00 sg37 g38 sg39 g1443 sbag3 (g7 g8 NtRp1444 (dp1445 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp1446 (dp1447 g18 g3 (g19 g5 (ltRp1448 (dp1449 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1450 (dp1451 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1452 (dp1453 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1454 (dp1455 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p1456 sg22 I00 sg37 g38 sg39 g1456 sbag3 (g7 g8 NtRp1457 (dp1458 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp1459 (dp1460 g18 g3 (g19 g5 (ltRp1461 (dp1462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1463 (dp1464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1465 (dp1466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1467 (dp1468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p1469 sg22 I00 sg37 g38 sg39 g1469 sbag3 (g7 g8 NtRp1470 (dp1471 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp1472 (dp1473 g18 g3 (g19 g5 (ltRp1474 (dp1475 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1476 (dp1477 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1478 (dp1479 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1480 (dp1481 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p1482 sg22 I00 sg37 g38 sg39 g1482 sbag3 (g7 g8 NtRp1483 (dp1484 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp1485 (dp1486 g18 g3 (g19 g5 (ltRp1487 (dp1488 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1489 (dp1490 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1491 (dp1492 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1493 (dp1494 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p1495 sg22 I00 sg37 g38 sg39 g1495 sbag3 (g7 g8 NtRp1496 (dp1497 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp1498 (dp1499 g18 g3 (g19 g5 (ltRp1500 (dp1501 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1502 (dp1503 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1504 (dp1505 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1506 (dp1507 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p1508 sg22 I00 sg37 g38 sg39 g1508 sbag3 (g7 g8 NtRp1509 (dp1510 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp1511 (dp1512 g18 g3 (g19 g5 (ltRp1513 (dp1514 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1515 (dp1516 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1517 (dp1518 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1519 (dp1520 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p1521 sg22 I00 sg37 g38 sg39 g1521 sbag3 (g7 g8 NtRp1522 (dp1523 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp1524 (dp1525 g18 g3 (g19 g5 (ltRp1526 (dp1527 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1528 (dp1529 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1530 (dp1531 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1532 (dp1533 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p1534 sg22 I00 sg37 g38 sg39 g1534 sbag3 (g7 g8 NtRp1535 (dp1536 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp1537 (dp1538 g18 g3 (g19 g5 (ltRp1539 (dp1540 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1541 (dp1542 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1543 (dp1544 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1545 (dp1546 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p1547 sg22 I00 sg37 g38 sg39 g1547 sbag3 (g7 g8 NtRp1548 (dp1549 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp1550 (dp1551 g18 g3 (g19 g5 (ltRp1552 (dp1553 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1554 (dp1555 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1556 (dp1557 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1558 (dp1559 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p1560 sg22 I00 sg37 g38 sg39 g1560 sbag3 (g7 g8 NtRp1561 (dp1562 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp1563 (dp1564 g18 g3 (g19 g5 (ltRp1565 (dp1566 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1567 (dp1568 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1569 (dp1570 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1571 (dp1572 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p1573 sg22 I00 sg37 g38 sg39 g1573 sbag3 (g7 g8 NtRp1574 (dp1575 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp1576 (dp1577 g18 g3 (g19 g5 (ltRp1578 (dp1579 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1580 (dp1581 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1582 (dp1583 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1584 (dp1585 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p1586 sg22 I00 sg37 g38 sg39 g1586 sbag3 (g7 g8 NtRp1587 (dp1588 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp1589 (dp1590 g18 g3 (g19 g5 (ltRp1591 (dp1592 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1593 (dp1594 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1595 (dp1596 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1597 (dp1598 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p1599 sg22 I00 sg37 g38 sg39 g1599 sbag3 (g7 g8 NtRp1600 (dp1601 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp1602 (dp1603 g18 g3 (g19 g5 (ltRp1604 (dp1605 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1606 (dp1607 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1608 (dp1609 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1610 (dp1611 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p1612 sg22 I00 sg37 g38 sg39 g1612 sbag3 (g7 g8 NtRp1613 (dp1614 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp1615 (dp1616 g18 g3 (g19 g5 (ltRp1617 (dp1618 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1619 (dp1620 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1621 (dp1622 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1623 (dp1624 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p1625 sg22 I00 sg37 g38 sg39 g1625 sbag3 (g7 g8 NtRp1626 (dp1627 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp1628 (dp1629 g18 g3 (g19 g5 (ltRp1630 (dp1631 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1632 (dp1633 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1634 (dp1635 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1636 (dp1637 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p1638 sg22 I00 sg37 g38 sg39 g1638 sbag3 (g7 g8 NtRp1639 (dp1640 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp1641 (dp1642 g18 g3 (g19 g5 (ltRp1643 (dp1644 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1645 (dp1646 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1647 (dp1648 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1649 (dp1650 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p1651 sg22 I00 sg37 g38 sg39 g1651 sbag3 (g7 g8 NtRp1652 (dp1653 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp1654 (dp1655 g18 g3 (g19 g5 (ltRp1656 (dp1657 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1658 (dp1659 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1660 (dp1661 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1662 (dp1663 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p1664 sg22 I00 sg37 g38 sg39 g1664 sbag3 (g7 g8 NtRp1665 (dp1666 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp1667 (dp1668 g18 g3 (g19 g5 (ltRp1669 (dp1670 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1671 (dp1672 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1673 (dp1674 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1675 (dp1676 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p1677 sg22 I00 sg37 g38 sg39 g1677 sbag3 (g7 g8 NtRp1678 (dp1679 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp1680 (dp1681 g18 g3 (g19 g5 (ltRp1682 (dp1683 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1684 (dp1685 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1686 (dp1687 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1688 (dp1689 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p1690 sg22 I00 sg37 g38 sg39 g1690 sbag3 (g7 g8 NtRp1691 (dp1692 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp1693 (dp1694 g18 g3 (g19 g5 (ltRp1695 (dp1696 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1697 (dp1698 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1699 (dp1700 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1701 (dp1702 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p1703 sg22 I00 sg37 g38 sg39 g1703 sbag3 (g7 g8 NtRp1704 (dp1705 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp1706 (dp1707 g18 g3 (g19 g5 (ltRp1708 (dp1709 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1710 (dp1711 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1712 (dp1713 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1714 (dp1715 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p1716 sg22 I00 sg37 g38 sg39 g1716 sbag3 (g7 g8 NtRp1717 (dp1718 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp1719 (dp1720 g18 g3 (g19 g5 (ltRp1721 (dp1722 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1723 (dp1724 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1725 (dp1726 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1727 (dp1728 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p1729 sg22 I00 sg37 g38 sg39 g1729 sbag3 (g7 g8 NtRp1730 (dp1731 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp1732 (dp1733 g18 g3 (g19 g5 (ltRp1734 (dp1735 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1736 (dp1737 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1738 (dp1739 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1740 (dp1741 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p1742 sg22 I00 sg37 g38 sg39 g1742 sbag3 (g7 g8 NtRp1743 (dp1744 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp1745 (dp1746 g18 g3 (g19 g5 (ltRp1747 (dp1748 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1749 (dp1750 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1751 (dp1752 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1753 (dp1754 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p1755 sg22 I00 sg37 g38 sg39 g1755 sbag3 (g7 g8 NtRp1756 (dp1757 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp1758 (dp1759 g18 g3 (g19 g5 (ltRp1760 (dp1761 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1762 (dp1763 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1764 (dp1765 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1766 (dp1767 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p1768 sg22 I00 sg37 g38 sg39 g1768 sbag3 (g7 g8 NtRp1769 (dp1770 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp1771 (dp1772 g18 g3 (g19 g5 (ltRp1773 (dp1774 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1775 (dp1776 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1777 (dp1778 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1779 (dp1780 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p1781 sg22 I00 sg37 g38 sg39 g1781 sbag3 (g7 g8 NtRp1782 (dp1783 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp1784 (dp1785 g18 g3 (g19 g5 (ltRp1786 (dp1787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1788 (dp1789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1790 (dp1791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1792 (dp1793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p1794 sg22 I00 sg37 g38 sg39 g1794 sbag3 (g7 g8 NtRp1795 (dp1796 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp1797 (dp1798 g18 g3 (g19 g5 (ltRp1799 (dp1800 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1801 (dp1802 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1803 (dp1804 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1805 (dp1806 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p1807 sg22 I00 sg37 g38 sg39 g1807 sbag3 (g7 g8 NtRp1808 (dp1809 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp1810 (dp1811 g18 g3 (g19 g5 (ltRp1812 (dp1813 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1814 (dp1815 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1816 (dp1817 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1818 (dp1819 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p1820 sg22 I00 sg37 g38 sg39 g1820 sbag3 (g7 g8 NtRp1821 (dp1822 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp1823 (dp1824 g18 g3 (g19 g5 (ltRp1825 (dp1826 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1827 (dp1828 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1829 (dp1830 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1831 (dp1832 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p1833 sg22 I00 sg37 g38 sg39 g1833 sbag3 (g7 g8 NtRp1834 (dp1835 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp1836 (dp1837 g18 g3 (g19 g5 (ltRp1838 (dp1839 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1840 (dp1841 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1842 (dp1843 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1844 (dp1845 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p1846 sg22 I00 sg37 g38 sg39 g1846 sbag3 (g7 g8 NtRp1847 (dp1848 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp1849 (dp1850 g18 g3 (g19 g5 (ltRp1851 (dp1852 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1853 (dp1854 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1855 (dp1856 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1857 (dp1858 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p1859 sg22 I00 sg37 g38 sg39 g1859 sbag3 (g7 g8 NtRp1860 (dp1861 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp1862 (dp1863 g18 g3 (g19 g5 (ltRp1864 (dp1865 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1866 (dp1867 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1868 (dp1869 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1870 (dp1871 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p1872 sg22 I00 sg37 g38 sg39 g1872 sbag3 (g7 g8 NtRp1873 (dp1874 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp1875 (dp1876 g18 g3 (g19 g5 (ltRp1877 (dp1878 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1879 (dp1880 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1881 (dp1882 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1883 (dp1884 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p1885 sg22 I00 sg37 g38 sg39 g1885 sbag3 (g7 g8 NtRp1886 (dp1887 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp1888 (dp1889 g18 g3 (g19 g5 (ltRp1890 (dp1891 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1892 (dp1893 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1894 (dp1895 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1896 (dp1897 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p1898 sg22 I00 sg37 g38 sg39 g1898 sbag3 (g7 g8 NtRp1899 (dp1900 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp1901 (dp1902 g18 g3 (g19 g5 (ltRp1903 (dp1904 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1905 (dp1906 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1907 (dp1908 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1909 (dp1910 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p1911 sg22 I00 sg37 g38 sg39 g1911 sbag3 (g7 g8 NtRp1912 (dp1913 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp1914 (dp1915 g18 g3 (g19 g5 (ltRp1916 (dp1917 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1918 (dp1919 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1920 (dp1921 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1922 (dp1923 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p1924 sg22 I00 sg37 g38 sg39 g1924 sbag3 (g7 g8 NtRp1925 (dp1926 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp1927 (dp1928 g18 g3 (g19 g5 (ltRp1929 (dp1930 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1931 (dp1932 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1933 (dp1934 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1935 (dp1936 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p1937 sg22 I00 sg37 g38 sg39 g1937 sbag3 (g7 g8 NtRp1938 (dp1939 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp1940 (dp1941 g18 g3 (g19 g5 (ltRp1942 (dp1943 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1944 (dp1945 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1946 (dp1947 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1948 (dp1949 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p1950 sg22 I00 sg37 g38 sg39 g1950 sbag3 (g7 g8 NtRp1951 (dp1952 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp1953 (dp1954 g18 g3 (g19 g5 (ltRp1955 (dp1956 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1957 (dp1958 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1959 (dp1960 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1961 (dp1962 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p1963 sg22 I00 sg37 g38 sg39 g1963 sbag3 (g7 g8 NtRp1964 (dp1965 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp1966 (dp1967 g18 g3 (g19 g5 (ltRp1968 (dp1969 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1970 (dp1971 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1972 (dp1973 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1974 (dp1975 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p1976 sg22 I00 sg37 g38 sg39 g1976 sbag3 (g7 g8 NtRp1977 (dp1978 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp1979 (dp1980 g18 g3 (g19 g5 (ltRp1981 (dp1982 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1983 (dp1984 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1985 (dp1986 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1987 (dp1988 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p1989 sg22 I00 sg37 g38 sg39 g1989 sbag3 (g7 g8 NtRp1990 (dp1991 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp1992 (dp1993 g18 g3 (g19 g5 (ltRp1994 (dp1995 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1996 (dp1997 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1998 (dp1999 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2000 (dp2001 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p2002 sg22 I00 sg37 g38 sg39 g2002 sbag3 (g7 g8 NtRp2003 (dp2004 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp2005 (dp2006 g18 g3 (g19 g5 (ltRp2007 (dp2008 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2009 (dp2010 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2011 (dp2012 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2013 (dp2014 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p2015 sg22 I00 sg37 g38 sg39 g2015 sbag3 (g7 g8 NtRp2016 (dp2017 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp2018 (dp2019 g18 g3 (g19 g5 (ltRp2020 (dp2021 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2022 (dp2023 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2024 (dp2025 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2026 (dp2027 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p2028 sg22 I00 sg37 g38 sg39 g2028 sbag3 (g7 g8 NtRp2029 (dp2030 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp2031 (dp2032 g18 g3 (g19 g5 (ltRp2033 (dp2034 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2035 (dp2036 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2037 (dp2038 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2039 (dp2040 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p2041 sg22 I00 sg37 g38 sg39 g2041 sbag3 (g7 g8 NtRp2042 (dp2043 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp2044 (dp2045 g18 g3 (g19 g5 (ltRp2046 (dp2047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2048 (dp2049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2050 (dp2051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2052 (dp2053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p2054 sg22 I00 sg37 g38 sg39 g2054 sbag3 (g7 g8 NtRp2055 (dp2056 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp2057 (dp2058 g18 g3 (g19 g5 (ltRp2059 (dp2060 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2061 (dp2062 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2063 (dp2064 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2065 (dp2066 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p2067 sg22 I00 sg37 g38 sg39 g2067 sbag3 (g7 g8 NtRp2068 (dp2069 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp2070 (dp2071 g18 g3 (g19 g5 (ltRp2072 (dp2073 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2074 (dp2075 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2076 (dp2077 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2078 (dp2079 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p2080 sg22 I00 sg37 g38 sg39 g2080 sbag3 (g7 g8 NtRp2081 (dp2082 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp2083 (dp2084 g18 g3 (g19 g5 (ltRp2085 (dp2086 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2087 (dp2088 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2089 (dp2090 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2091 (dp2092 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p2093 sg22 I00 sg37 g38 sg39 g2093 sbag3 (g7 g8 NtRp2094 (dp2095 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp2096 (dp2097 g18 g3 (g19 g5 (ltRp2098 (dp2099 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2100 (dp2101 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2102 (dp2103 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2104 (dp2105 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p2106 sg22 I00 sg37 g38 sg39 g2106 sbag3 (g7 g8 NtRp2107 (dp2108 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp2109 (dp2110 g18 g3 (g19 g5 (ltRp2111 (dp2112 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2113 (dp2114 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2115 (dp2116 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2117 (dp2118 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p2119 sg22 I00 sg37 g38 sg39 g2119 sbag3 (g7 g8 NtRp2120 (dp2121 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp2122 (dp2123 g18 g3 (g19 g5 (ltRp2124 (dp2125 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2126 (dp2127 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2128 (dp2129 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2130 (dp2131 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p2132 sg22 I00 sg37 g38 sg39 g2132 sbag3 (g7 g8 NtRp2133 (dp2134 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp2135 (dp2136 g18 g3 (g19 g5 (ltRp2137 (dp2138 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2139 (dp2140 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2141 (dp2142 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2143 (dp2144 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p2145 sg22 I00 sg37 g38 sg39 g2145 sbag3 (g7 g8 NtRp2146 (dp2147 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp2148 (dp2149 g18 g3 (g19 g5 (ltRp2150 (dp2151 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2152 (dp2153 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2154 (dp2155 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2156 (dp2157 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p2158 sg22 I00 sg37 g38 sg39 g2158 sbag3 (g7 g8 NtRp2159 (dp2160 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp2161 (dp2162 g18 g3 (g19 g5 (ltRp2163 (dp2164 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2165 (dp2166 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2167 (dp2168 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2169 (dp2170 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p2171 sg22 I00 sg37 g38 sg39 g2171 sbag3 (g7 g8 NtRp2172 (dp2173 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp2174 (dp2175 g18 g3 (g19 g5 (ltRp2176 (dp2177 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2178 (dp2179 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2180 (dp2181 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2182 (dp2183 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p2184 sg22 I00 sg37 g38 sg39 g2184 sbag3 (g7 g8 NtRp2185 (dp2186 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp2187 (dp2188 g18 g3 (g19 g5 (ltRp2189 (dp2190 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2191 (dp2192 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2193 (dp2194 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2195 (dp2196 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p2197 sg22 I00 sg37 g38 sg39 g2197 sbag3 (g7 g8 NtRp2198 (dp2199 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp2200 (dp2201 g18 g3 (g19 g5 (ltRp2202 (dp2203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2204 (dp2205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2206 (dp2207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2208 (dp2209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p2210 sg22 I00 sg37 g38 sg39 g2210 sbag3 (g7 g8 NtRp2211 (dp2212 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp2213 (dp2214 g18 g3 (g19 g5 (ltRp2215 (dp2216 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2217 (dp2218 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2219 (dp2220 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2221 (dp2222 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p2223 sg22 I00 sg37 g38 sg39 g2223 sbag3 (g7 g8 NtRp2224 (dp2225 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp2226 (dp2227 g18 g3 (g19 g5 (ltRp2228 (dp2229 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2230 (dp2231 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2232 (dp2233 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2234 (dp2235 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p2236 sg22 I00 sg37 g38 sg39 g2236 sbag3 (g7 g8 NtRp2237 (dp2238 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp2239 (dp2240 g18 g3 (g19 g5 (ltRp2241 (dp2242 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2243 (dp2244 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2245 (dp2246 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2247 (dp2248 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p2249 sg22 I00 sg37 g38 sg39 g2249 sbag3 (g7 g8 NtRp2250 (dp2251 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp2252 (dp2253 g18 g3 (g19 g5 (ltRp2254 (dp2255 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2256 (dp2257 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2258 (dp2259 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2260 (dp2261 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p2262 sg22 I00 sg37 g38 sg39 g2262 sbag3 (g7 g8 NtRp2263 (dp2264 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp2265 (dp2266 g18 g3 (g19 g5 (ltRp2267 (dp2268 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2269 (dp2270 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2271 (dp2272 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2273 (dp2274 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p2275 sg22 I00 sg37 g38 sg39 g2275 sbag3 (g7 g8 NtRp2276 (dp2277 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp2278 (dp2279 g18 g3 (g19 g5 (ltRp2280 (dp2281 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2282 (dp2283 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2284 (dp2285 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2286 (dp2287 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p2288 sg22 I00 sg37 g38 sg39 g2288 sbag3 (g7 g8 NtRp2289 (dp2290 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp2291 (dp2292 g18 g3 (g19 g5 (ltRp2293 (dp2294 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2295 (dp2296 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2297 (dp2298 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2299 (dp2300 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p2301 sg22 I00 sg37 g38 sg39 g2301 sbag3 (g7 g8 NtRp2302 (dp2303 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp2304 (dp2305 g18 g3 (g19 g5 (ltRp2306 (dp2307 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2308 (dp2309 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2310 (dp2311 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2312 (dp2313 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p2314 sg22 I00 sg37 g38 sg39 g2314 sbag3 (g7 g8 NtRp2315 (dp2316 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp2317 (dp2318 g18 g3 (g19 g5 (ltRp2319 (dp2320 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2321 (dp2322 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2323 (dp2324 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2325 (dp2326 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p2327 sg22 I00 sg37 g38 sg39 g2327 sbag3 (g7 g8 NtRp2328 (dp2329 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp2330 (dp2331 g18 g3 (g19 g5 (ltRp2332 (dp2333 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2334 (dp2335 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2336 (dp2337 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2338 (dp2339 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p2340 sg22 I00 sg37 g38 sg39 g2340 sbag3 (g7 g8 NtRp2341 (dp2342 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp2343 (dp2344 g18 g3 (g19 g5 (ltRp2345 (dp2346 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2347 (dp2348 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2349 (dp2350 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2351 (dp2352 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p2353 sg22 I00 sg37 g38 sg39 g2353 sbag3 (g7 g8 NtRp2354 (dp2355 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp2356 (dp2357 g18 g3 (g19 g5 (ltRp2358 (dp2359 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2360 (dp2361 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2362 (dp2363 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2364 (dp2365 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p2366 sg22 I00 sg37 g38 sg39 g2366 sbag3 (g7 g8 NtRp2367 (dp2368 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp2369 (dp2370 g18 g3 (g19 g5 (ltRp2371 (dp2372 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2373 (dp2374 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2375 (dp2376 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2377 (dp2378 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p2379 sg22 I00 sg37 g38 sg39 g2379 sbag3 (g7 g8 NtRp2380 (dp2381 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp2382 (dp2383 g18 g3 (g19 g5 (ltRp2384 (dp2385 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2386 (dp2387 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2388 (dp2389 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2390 (dp2391 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p2392 sg22 I00 sg37 g38 sg39 g2392 sbag3 (g7 g8 NtRp2393 (dp2394 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp2395 (dp2396 g18 g3 (g19 g5 (ltRp2397 (dp2398 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2399 (dp2400 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2401 (dp2402 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2403 (dp2404 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p2405 sg22 I00 sg37 g38 sg39 g2405 sbag3 (g7 g8 NtRp2406 (dp2407 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp2408 (dp2409 g18 g3 (g19 g5 (ltRp2410 (dp2411 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2412 (dp2413 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2414 (dp2415 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2416 (dp2417 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p2418 sg22 I00 sg37 g38 sg39 g2418 sbag3 (g7 g8 NtRp2419 (dp2420 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp2421 (dp2422 g18 g3 (g19 g5 (ltRp2423 (dp2424 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2425 (dp2426 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2427 (dp2428 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2429 (dp2430 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p2431 sg22 I00 sg37 g38 sg39 g2431 sbag3 (g7 g8 NtRp2432 (dp2433 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp2434 (dp2435 g18 g3 (g19 g5 (ltRp2436 (dp2437 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2438 (dp2439 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2440 (dp2441 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2442 (dp2443 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p2444 sg22 I00 sg37 g38 sg39 g2444 sbag3 (g7 g8 NtRp2445 (dp2446 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp2447 (dp2448 g18 g3 (g19 g5 (ltRp2449 (dp2450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2451 (dp2452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2453 (dp2454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2455 (dp2456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p2457 sg22 I00 sg37 g38 sg39 g2457 sbag3 (g7 g8 NtRp2458 (dp2459 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp2460 (dp2461 g18 g3 (g19 g5 (ltRp2462 (dp2463 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2464 (dp2465 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2466 (dp2467 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2468 (dp2469 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p2470 sg22 I00 sg37 g38 sg39 g2470 sbag3 (g7 g8 NtRp2471 (dp2472 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp2473 (dp2474 g18 g3 (g19 g5 (ltRp2475 (dp2476 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2477 (dp2478 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2479 (dp2480 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2481 (dp2482 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p2483 sg22 I00 sg37 g38 sg39 g2483 sbag3 (g7 g8 NtRp2484 (dp2485 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp2486 (dp2487 g18 g3 (g19 g5 (ltRp2488 (dp2489 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2490 (dp2491 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2492 (dp2493 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2494 (dp2495 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p2496 sg22 I00 sg37 g38 sg39 g2496 sbag3 (g7 g8 NtRp2497 (dp2498 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp2499 (dp2500 g18 g3 (g19 g5 (ltRp2501 (dp2502 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2503 (dp2504 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2505 (dp2506 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2507 (dp2508 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p2509 sg22 I00 sg37 g38 sg39 g2509 sbag3 (g7 g8 NtRp2510 (dp2511 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp2512 (dp2513 g18 g3 (g19 g5 (ltRp2514 (dp2515 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2516 (dp2517 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2518 (dp2519 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2520 (dp2521 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p2522 sg22 I00 sg37 g38 sg39 g2522 sbag3 (g7 g8 NtRp2523 (dp2524 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp2525 (dp2526 g18 g3 (g19 g5 (ltRp2527 (dp2528 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2529 (dp2530 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2531 (dp2532 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2533 (dp2534 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p2535 sg22 I00 sg37 g38 sg39 g2535 sbag3 (g7 g8 NtRp2536 (dp2537 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp2538 (dp2539 g18 g3 (g19 g5 (ltRp2540 (dp2541 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2542 (dp2543 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2544 (dp2545 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2546 (dp2547 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p2548 sg22 I00 sg37 g38 sg39 g2548 sbag3 (g7 g8 NtRp2549 (dp2550 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp2551 (dp2552 g18 g3 (g19 g5 (ltRp2553 (dp2554 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2555 (dp2556 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2557 (dp2558 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2559 (dp2560 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p2561 sg22 I00 sg37 g38 sg39 g2561 sbag3 (g7 g8 NtRp2562 (dp2563 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp2564 (dp2565 g18 g3 (g19 g5 (ltRp2566 (dp2567 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2568 (dp2569 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2570 (dp2571 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2572 (dp2573 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p2574 sg22 I00 sg37 g38 sg39 g2574 sbag3 (g7 g8 NtRp2575 (dp2576 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp2577 (dp2578 g18 g3 (g19 g5 (ltRp2579 (dp2580 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2581 (dp2582 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2583 (dp2584 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2585 (dp2586 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p2587 sg22 I00 sg37 g38 sg39 g2587 sbag3 (g7 g8 NtRp2588 (dp2589 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp2590 (dp2591 g18 g3 (g19 g5 (ltRp2592 (dp2593 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2594 (dp2595 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2596 (dp2597 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2598 (dp2599 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p2600 sg22 I00 sg37 g38 sg39 g2600 sbag3 (g7 g8 NtRp2601 (dp2602 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp2603 (dp2604 g18 g3 (g19 g5 (ltRp2605 (dp2606 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2607 (dp2608 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2609 (dp2610 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2611 (dp2612 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p2613 sg22 I00 sg37 g38 sg39 g2613 sbag3 (g7 g8 NtRp2614 (dp2615 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp2616 (dp2617 g18 g3 (g19 g5 (ltRp2618 (dp2619 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2620 (dp2621 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2622 (dp2623 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2624 (dp2625 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p2626 sg22 I00 sg37 g38 sg39 g2626 sbag3 (g7 g8 NtRp2627 (dp2628 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp2629 (dp2630 g18 g3 (g19 g5 (ltRp2631 (dp2632 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2633 (dp2634 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2635 (dp2636 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2637 (dp2638 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p2639 sg22 I00 sg37 g38 sg39 g2639 sbag3 (g7 g8 NtRp2640 (dp2641 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp2642 (dp2643 g18 g3 (g19 g5 (ltRp2644 (dp2645 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2646 (dp2647 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2648 (dp2649 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2650 (dp2651 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p2652 sg22 I00 sg37 g38 sg39 g2652 sbag3 (g7 g8 NtRp2653 (dp2654 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp2655 (dp2656 g18 g3 (g19 g5 (ltRp2657 (dp2658 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2659 (dp2660 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2661 (dp2662 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2663 (dp2664 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p2665 sg22 I00 sg37 g38 sg39 g2665 sbag3 (g7 g8 NtRp2666 (dp2667 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp2668 (dp2669 g18 g3 (g19 g5 (ltRp2670 (dp2671 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2672 (dp2673 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2674 (dp2675 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2676 (dp2677 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p2678 sg22 I00 sg37 g38 sg39 g2678 sbag3 (g7 g8 NtRp2679 (dp2680 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp2681 (dp2682 g18 g3 (g19 g5 (ltRp2683 (dp2684 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2685 (dp2686 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2687 (dp2688 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2689 (dp2690 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p2691 sg22 I00 sg37 g38 sg39 g2691 sbag3 (g7 g8 NtRp2692 (dp2693 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp2694 (dp2695 g18 g3 (g19 g5 (ltRp2696 (dp2697 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2698 (dp2699 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2700 (dp2701 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2702 (dp2703 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p2704 sg22 I00 sg37 g38 sg39 g2704 sbag3 (g7 g8 NtRp2705 (dp2706 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp2707 (dp2708 g18 g3 (g19 g5 (ltRp2709 (dp2710 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2711 (dp2712 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2713 (dp2714 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2715 (dp2716 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p2717 sg22 I00 sg37 g38 sg39 g2717 sbag3 (g7 g8 NtRp2718 (dp2719 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp2720 (dp2721 g18 g3 (g19 g5 (ltRp2722 (dp2723 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2724 (dp2725 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2726 (dp2727 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2728 (dp2729 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p2730 sg22 I00 sg37 g38 sg39 g2730 sbag3 (g7 g8 NtRp2731 (dp2732 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp2733 (dp2734 g18 g3 (g19 g5 (ltRp2735 (dp2736 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2737 (dp2738 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2739 (dp2740 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2741 (dp2742 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p2743 sg22 I00 sg37 g38 sg39 g2743 sbag3 (g7 g8 NtRp2744 (dp2745 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp2746 (dp2747 g18 g3 (g19 g5 (ltRp2748 (dp2749 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2750 (dp2751 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2752 (dp2753 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2754 (dp2755 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p2756 sg22 I00 sg37 g38 sg39 g2756 sbag3 (g7 g8 NtRp2757 (dp2758 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp2759 (dp2760 g18 g3 (g19 g5 (ltRp2761 (dp2762 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2763 (dp2764 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2765 (dp2766 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2767 (dp2768 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p2769 sg22 I00 sg37 g38 sg39 g2769 sbag3 (g7 g8 NtRp2770 (dp2771 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp2772 (dp2773 g18 g3 (g19 g5 (ltRp2774 (dp2775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2776 (dp2777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2778 (dp2779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2780 (dp2781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p2782 sg22 I00 sg37 g38 sg39 g2782 sbag3 (g7 g8 NtRp2783 (dp2784 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp2785 (dp2786 g18 g3 (g19 g5 (ltRp2787 (dp2788 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2789 (dp2790 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2791 (dp2792 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2793 (dp2794 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p2795 sg22 I00 sg37 g38 sg39 g2795 sbatRp2796 (dp2797 g12 I185 sg22 I00 sg11 NsbsS'HTTP Client Per URL' p2798 g3 (g4 g5 (lp2799 g3 (g7 g8 NtRp2800 (dp2801 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp2802 (dp2803 g18 g3 (g19 g5 (ltRp2804 (dp2805 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2806 (dp2807 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2808 (dp2809 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2810 (dp2811 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Sent' p2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp2813 (dp2814 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp2815 (dp2816 g18 g3 (g19 g5 (ltRp2817 (dp2818 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2819 (dp2820 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2821 (dp2822 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2823 (dp2824 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp2826 (dp2827 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp2828 (dp2829 g18 g3 (g19 g5 (ltRp2830 (dp2831 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2832 (dp2833 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2834 (dp2835 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2836 (dp2837 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (Provisional)' p2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp2839 (dp2840 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp2841 (dp2842 g18 g3 (g19 g5 (ltRp2843 (dp2844 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2845 (dp2846 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2847 (dp2848 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2849 (dp2850 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp2852 (dp2853 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp2854 (dp2855 g18 g3 (g19 g5 (ltRp2856 (dp2857 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2858 (dp2859 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2860 (dp2861 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2862 (dp2863 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write)' p2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp2865 (dp2866 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp2867 (dp2868 g18 g3 (g19 g5 (ltRp2869 (dp2870 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2871 (dp2872 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2873 (dp2874 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2875 (dp2876 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Read)' p2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp2878 (dp2879 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp2880 (dp2881 g18 g3 (g19 g5 (ltRp2882 (dp2883 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2884 (dp2885 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2886 (dp2887 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2888 (dp2889 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Bad Header)' p2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp2891 (dp2892 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp2893 (dp2894 g18 g3 (g19 g5 (ltRp2895 (dp2896 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2897 (dp2898 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2899 (dp2900 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2901 (dp2902 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx)' p2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp2904 (dp2905 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp2906 (dp2907 g18 g3 (g19 g5 (ltRp2908 (dp2909 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2910 (dp2911 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2912 (dp2913 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2914 (dp2915 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (400)' p2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp2917 (dp2918 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp2919 (dp2920 g18 g3 (g19 g5 (ltRp2921 (dp2922 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2923 (dp2924 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2925 (dp2926 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2927 (dp2928 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (401)' p2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp2930 (dp2931 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp2932 (dp2933 g18 g3 (g19 g5 (ltRp2934 (dp2935 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2936 (dp2937 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2938 (dp2939 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2940 (dp2941 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (403)' p2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp2943 (dp2944 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp2945 (dp2946 g18 g3 (g19 g5 (ltRp2947 (dp2948 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2949 (dp2950 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2951 (dp2952 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2953 (dp2954 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp2956 (dp2957 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp2958 (dp2959 g18 g3 (g19 g5 (ltRp2960 (dp2961 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2962 (dp2963 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2964 (dp2965 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2966 (dp2967 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (407)' p2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp2969 (dp2970 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp2971 (dp2972 g18 g3 (g19 g5 (ltRp2973 (dp2974 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2975 (dp2976 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2977 (dp2978 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2979 (dp2980 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (408)' p2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp2982 (dp2983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp2984 (dp2985 g18 g3 (g19 g5 (ltRp2986 (dp2987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2988 (dp2989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2990 (dp2991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2992 (dp2993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx other)' p2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp2995 (dp2996 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp2997 (dp2998 g18 g3 (g19 g5 (ltRp2999 (dp3000 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3001 (dp3002 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3003 (dp3004 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3005 (dp3006 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx)' p3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp3008 (dp3009 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp3010 (dp3011 g18 g3 (g19 g5 (ltRp3012 (dp3013 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3014 (dp3015 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3016 (dp3017 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3018 (dp3019 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (505)' p3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp3021 (dp3022 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp3023 (dp3024 g18 g3 (g19 g5 (ltRp3025 (dp3026 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3027 (dp3028 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3029 (dp3030 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3031 (dp3032 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx other)' p3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp3034 (dp3035 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp3036 (dp3037 g18 g3 (g19 g5 (ltRp3038 (dp3039 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3040 (dp3041 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3042 (dp3043 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3044 (dp3045 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (other)' p3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp3047 (dp3048 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp3049 (dp3050 g18 g3 (g19 g5 (ltRp3051 (dp3052 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3053 (dp3054 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3055 (dp3056 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3057 (dp3058 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Timeout)' p3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp3060 (dp3061 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp3062 (dp3063 g18 g3 (g19 g5 (ltRp3064 (dp3065 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3066 (dp3067 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3068 (dp3069 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3070 (dp3071 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp3073 (dp3074 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp3075 (dp3076 g18 g3 (g19 g5 (ltRp3077 (dp3078 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3079 (dp3080 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3081 (dp3082 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3083 (dp3084 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted Before Request' p3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp3086 (dp3087 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp3088 (dp3089 g18 g3 (g19 g5 (ltRp3090 (dp3091 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3092 (dp3093 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3094 (dp3095 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3096 (dp3097 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted After Request' p3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp3099 (dp3100 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp3101 (dp3102 g18 g3 (g19 g5 (ltRp3103 (dp3104 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3105 (dp3106 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3107 (dp3108 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3109 (dp3110 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received With Match' p3111 sg22 I00 sg37 g38 sg39 g3111 sbag3 (g7 g8 NtRp3112 (dp3113 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp3114 (dp3115 g18 g3 (g19 g5 (ltRp3116 (dp3117 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3118 (dp3119 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3120 (dp3121 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3122 (dp3123 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received Without Match' p3124 sg22 I00 sg37 g38 sg39 g3124 sbag3 (g7 g8 NtRp3125 (dp3126 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp3127 (dp3128 g18 g3 (g19 g5 (ltRp3129 (dp3130 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3131 (dp3132 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3133 (dp3134 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3135 (dp3136 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Intermediate Responses Received (1xx)' p3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3138 (dp3139 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp3140 (dp3141 g18 g3 (g19 g5 (ltRp3142 (dp3143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3144 (dp3145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3146 (dp3147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3148 (dp3149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (2xx)' p3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3151 (dp3152 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp3153 (dp3154 g18 g3 (g19 g5 (ltRp3155 (dp3156 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3157 (dp3158 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3159 (dp3160 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3161 (dp3162 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (3xx)' p3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3164 (dp3165 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp3166 (dp3167 g18 g3 (g19 g5 (ltRp3168 (dp3169 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3170 (dp3171 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3172 (dp3173 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3174 (dp3175 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (301)' p3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3177 (dp3178 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp3179 (dp3180 g18 g3 (g19 g5 (ltRp3181 (dp3182 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3183 (dp3184 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3185 (dp3186 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3187 (dp3188 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (302)' p3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp3190 (dp3191 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp3192 (dp3193 g18 g3 (g19 g5 (ltRp3194 (dp3195 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3196 (dp3197 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3198 (dp3199 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3200 (dp3201 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (303)' p3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp3203 (dp3204 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp3205 (dp3206 g18 g3 (g19 g5 (ltRp3207 (dp3208 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3209 (dp3210 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3211 (dp3212 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3213 (dp3214 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (307)' p3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp3216 (dp3217 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp3218 (dp3219 g18 g3 (g19 g5 (ltRp3220 (dp3221 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3222 (dp3223 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3224 (dp3225 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3226 (dp3227 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Sent' p3228 sg22 I00 sg37 g38 sg39 g3228 sbag3 (g7 g8 NtRp3229 (dp3230 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp3231 (dp3232 g18 g3 (g19 g5 (ltRp3233 (dp3234 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3235 (dp3236 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3237 (dp3238 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3239 (dp3240 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Headers Received' p3241 sg22 I00 sg37 g38 sg39 g3241 sbag3 (g7 g8 NtRp3242 (dp3243 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp3244 (dp3245 g18 g3 (g19 g5 (ltRp3246 (dp3247 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3248 (dp3249 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3250 (dp3251 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3252 (dp3253 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Received' p3254 sg22 I00 sg37 g38 sg39 g3254 sbag3 (g7 g8 NtRp3255 (dp3256 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp3257 (dp3258 g18 g3 (g19 g5 (ltRp3259 (dp3260 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3261 (dp3262 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3263 (dp3264 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3265 (dp3266 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Successful' p3267 sg22 I00 sg37 g38 sg39 g3267 sbag3 (g7 g8 NtRp3268 (dp3269 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp3270 (dp3271 g18 g3 (g19 g5 (ltRp3272 (dp3273 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3274 (dp3275 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3276 (dp3277 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3278 (dp3279 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Failed' p3280 sg22 I00 sg37 g38 sg39 g3280 sbag3 (g7 g8 NtRp3281 (dp3282 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp3283 (dp3284 g18 g3 (g19 g5 (ltRp3285 (dp3286 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3287 (dp3288 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3289 (dp3290 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3291 (dp3292 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p3293 sg22 I00 sg37 g38 sg39 g3293 sbag3 (g7 g8 NtRp3294 (dp3295 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp3296 (dp3297 g18 g3 (g19 g5 (ltRp3298 (dp3299 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3300 (dp3301 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3302 (dp3303 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3304 (dp3305 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p3306 sg22 I00 sg37 g261 sg39 g3306 sbag3 (g7 g8 NtRp3307 (dp3308 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp3309 (dp3310 g18 g3 (g19 g5 (ltRp3311 (dp3312 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3313 (dp3314 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3315 (dp3316 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3317 (dp3318 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p3319 sg22 I00 sg37 g261 sg39 g3319 sbag3 (g7 g8 NtRp3320 (dp3321 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp3322 (dp3323 g18 g3 (g19 g5 (ltRp3324 (dp3325 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3326 (dp3327 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3328 (dp3329 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3330 (dp3331 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Sent' p3332 sg22 I00 sg37 g38 sg39 g3332 sbag3 (g7 g8 NtRp3333 (dp3334 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp3335 (dp3336 g18 g3 (g19 g5 (ltRp3337 (dp3338 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3339 (dp3340 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3341 (dp3342 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3343 (dp3344 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p3345 sg22 I00 sg37 g38 sg39 g3345 sbag3 (g7 g8 NtRp3346 (dp3347 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp3348 (dp3349 g18 g3 (g19 g5 (ltRp3350 (dp3351 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3352 (dp3353 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3354 (dp3355 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3356 (dp3357 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size in Request' p3358 sg22 I00 sg37 g261 sg39 g3358 sbag3 (g7 g8 NtRp3359 (dp3360 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp3361 (dp3362 g18 g3 (g19 g5 (ltRp3363 (dp3364 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3365 (dp3366 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3367 (dp3368 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3369 (dp3370 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p3371 sg22 I00 sg37 g261 sg39 g3371 sbag3 (g7 g8 NtRp3372 (dp3373 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp3374 (dp3375 g18 g3 (g19 g5 (ltRp3376 (dp3377 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3378 (dp3379 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3380 (dp3381 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3382 (dp3383 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name1-Value1' p3384 sg22 I00 sg37 S'kString' p3385 sg39 g3384 sbag3 (g7 g8 NtRp3386 (dp3387 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp3388 (dp3389 g18 g3 (g19 g5 (ltRp3390 (dp3391 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3392 (dp3393 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3394 (dp3395 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3396 (dp3397 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter1' p3398 sg22 I00 sg37 g38 sg39 g3398 sbag3 (g7 g8 NtRp3399 (dp3400 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp3401 (dp3402 g18 g3 (g19 g5 (ltRp3403 (dp3404 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3405 (dp3406 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3407 (dp3408 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3409 (dp3410 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name2-Value2' p3411 sg22 I00 sg37 g3385 sg39 g3411 sbag3 (g7 g8 NtRp3412 (dp3413 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp3414 (dp3415 g18 g3 (g19 g5 (ltRp3416 (dp3417 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3418 (dp3419 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3420 (dp3421 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3422 (dp3423 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter2' p3424 sg22 I00 sg37 g38 sg39 g3424 sbag3 (g7 g8 NtRp3425 (dp3426 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp3427 (dp3428 g18 g3 (g19 g5 (ltRp3429 (dp3430 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3431 (dp3432 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3433 (dp3434 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3435 (dp3436 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name3-Value3' p3437 sg22 I00 sg37 g3385 sg39 g3437 sbag3 (g7 g8 NtRp3438 (dp3439 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp3440 (dp3441 g18 g3 (g19 g5 (ltRp3442 (dp3443 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3444 (dp3445 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3446 (dp3447 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3448 (dp3449 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter3' p3450 sg22 I00 sg37 g38 sg39 g3450 sbag3 (g7 g8 NtRp3451 (dp3452 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp3453 (dp3454 g18 g3 (g19 g5 (ltRp3455 (dp3456 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3457 (dp3458 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3459 (dp3460 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3461 (dp3462 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name4-Value4' p3463 sg22 I00 sg37 g3385 sg39 g3463 sbag3 (g7 g8 NtRp3464 (dp3465 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp3466 (dp3467 g18 g3 (g19 g5 (ltRp3468 (dp3469 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3470 (dp3471 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3472 (dp3473 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3474 (dp3475 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter4' p3476 sg22 I00 sg37 g38 sg39 g3476 sbag3 (g7 g8 NtRp3477 (dp3478 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp3479 (dp3480 g18 g3 (g19 g5 (ltRp3481 (dp3482 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3483 (dp3484 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3485 (dp3486 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3487 (dp3488 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name5-Value5' p3489 sg22 I00 sg37 g3385 sg39 g3489 sbag3 (g7 g8 NtRp3490 (dp3491 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp3492 (dp3493 g18 g3 (g19 g5 (ltRp3494 (dp3495 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3496 (dp3497 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3498 (dp3499 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3500 (dp3501 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter5' p3502 sg22 I00 sg37 g38 sg39 g3502 sbag3 (g7 g8 NtRp3503 (dp3504 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp3505 (dp3506 g18 g3 (g19 g5 (ltRp3507 (dp3508 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3509 (dp3510 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3511 (dp3512 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3513 (dp3514 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name6-Value6' p3515 sg22 I00 sg37 g3385 sg39 g3515 sbag3 (g7 g8 NtRp3516 (dp3517 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp3518 (dp3519 g18 g3 (g19 g5 (ltRp3520 (dp3521 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3522 (dp3523 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3524 (dp3525 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3526 (dp3527 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter6' p3528 sg22 I00 sg37 g38 sg39 g3528 sbag3 (g7 g8 NtRp3529 (dp3530 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp3531 (dp3532 g18 g3 (g19 g5 (ltRp3533 (dp3534 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3535 (dp3536 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3537 (dp3538 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3539 (dp3540 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name7-Value7' p3541 sg22 I00 sg37 g3385 sg39 g3541 sbag3 (g7 g8 NtRp3542 (dp3543 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp3544 (dp3545 g18 g3 (g19 g5 (ltRp3546 (dp3547 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3548 (dp3549 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3550 (dp3551 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3552 (dp3553 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter7' p3554 sg22 I00 sg37 g38 sg39 g3554 sbag3 (g7 g8 NtRp3555 (dp3556 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp3557 (dp3558 g18 g3 (g19 g5 (ltRp3559 (dp3560 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3561 (dp3562 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3563 (dp3564 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3565 (dp3566 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name8-Value8' p3567 sg22 I00 sg37 g3385 sg39 g3567 sbag3 (g7 g8 NtRp3568 (dp3569 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp3570 (dp3571 g18 g3 (g19 g5 (ltRp3572 (dp3573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3574 (dp3575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3576 (dp3577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3578 (dp3579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter8' p3580 sg22 I00 sg37 g38 sg39 g3580 sbag3 (g7 g8 NtRp3581 (dp3582 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp3583 (dp3584 g18 g3 (g19 g5 (ltRp3585 (dp3586 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3587 (dp3588 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3589 (dp3590 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3591 (dp3592 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name9-Value9' p3593 sg22 I00 sg37 g3385 sg39 g3593 sbag3 (g7 g8 NtRp3594 (dp3595 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp3596 (dp3597 g18 g3 (g19 g5 (ltRp3598 (dp3599 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3600 (dp3601 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3602 (dp3603 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3604 (dp3605 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter9' p3606 sg22 I00 sg37 g38 sg39 g3606 sbag3 (g7 g8 NtRp3607 (dp3608 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp3609 (dp3610 g18 g3 (g19 g5 (ltRp3611 (dp3612 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3613 (dp3614 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3615 (dp3616 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3617 (dp3618 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name10-Value10' p3619 sg22 I00 sg37 g3385 sg39 g3619 sbag3 (g7 g8 NtRp3620 (dp3621 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp3622 (dp3623 g18 g3 (g19 g5 (ltRp3624 (dp3625 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3626 (dp3627 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3628 (dp3629 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3630 (dp3631 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter10' p3632 sg22 I00 sg37 g38 sg39 g3632 sbag3 (g7 g8 NtRp3633 (dp3634 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp3635 (dp3636 g18 g3 (g19 g5 (ltRp3637 (dp3638 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3639 (dp3640 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3641 (dp3642 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3643 (dp3644 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Received' p3645 sg22 I00 sg37 g38 sg39 g3645 sbag3 (g7 g8 NtRp3646 (dp3647 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp3648 (dp3649 g18 g3 (g19 g5 (ltRp3650 (dp3651 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3652 (dp3653 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3654 (dp3655 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3656 (dp3657 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Successful' p3658 sg22 I00 sg37 g38 sg39 g3658 sbag3 (g7 g8 NtRp3659 (dp3660 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp3661 (dp3662 g18 g3 (g19 g5 (ltRp3663 (dp3664 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3665 (dp3666 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3667 (dp3668 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3669 (dp3670 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Failed' p3671 sg22 I00 sg37 g38 sg39 g3671 sbag3 (g7 g8 NtRp3672 (dp3673 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp3674 (dp3675 g18 g3 (g19 g5 (ltRp3676 (dp3677 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3678 (dp3679 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3680 (dp3681 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3682 (dp3683 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Received' p3684 sg22 I00 sg37 g38 sg39 g3684 sbag3 (g7 g8 NtRp3685 (dp3686 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp3687 (dp3688 g18 g3 (g19 g5 (ltRp3689 (dp3690 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3691 (dp3692 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3693 (dp3694 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3695 (dp3696 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Successful' p3697 sg22 I00 sg37 g38 sg39 g3697 sbag3 (g7 g8 NtRp3698 (dp3699 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp3700 (dp3701 g18 g3 (g19 g5 (ltRp3702 (dp3703 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3704 (dp3705 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3706 (dp3707 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3708 (dp3709 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Failed' p3710 sg22 I00 sg37 g38 sg39 g3710 sbag3 (g7 g8 NtRp3711 (dp3712 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp3713 (dp3714 g18 g3 (g19 g5 (ltRp3715 (dp3716 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3717 (dp3718 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3719 (dp3720 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3721 (dp3722 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Received' p3723 sg22 I00 sg37 g38 sg39 g3723 sbag3 (g7 g8 NtRp3724 (dp3725 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp3726 (dp3727 g18 g3 (g19 g5 (ltRp3728 (dp3729 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3730 (dp3731 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3732 (dp3733 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3734 (dp3735 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Successful' p3736 sg22 I00 sg37 g38 sg39 g3736 sbag3 (g7 g8 NtRp3737 (dp3738 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp3739 (dp3740 g18 g3 (g19 g5 (ltRp3741 (dp3742 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3743 (dp3744 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3745 (dp3746 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3747 (dp3748 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Failed' p3749 sg22 I00 sg37 g38 sg39 g3749 sbag3 (g7 g8 NtRp3750 (dp3751 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp3752 (dp3753 g18 g3 (g19 g5 (ltRp3754 (dp3755 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3756 (dp3757 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3758 (dp3759 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3760 (dp3761 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Received' p3762 sg22 I00 sg37 g38 sg39 g3762 sbag3 (g7 g8 NtRp3763 (dp3764 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp3765 (dp3766 g18 g3 (g19 g5 (ltRp3767 (dp3768 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3769 (dp3770 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3771 (dp3772 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3773 (dp3774 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Successful' p3775 sg22 I00 sg37 g38 sg39 g3775 sbag3 (g7 g8 NtRp3776 (dp3777 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp3778 (dp3779 g18 g3 (g19 g5 (ltRp3780 (dp3781 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3782 (dp3783 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3784 (dp3785 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3786 (dp3787 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Failed' p3788 sg22 I00 sg37 g38 sg39 g3788 sbag3 (g7 g8 NtRp3789 (dp3790 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp3791 (dp3792 g18 g3 (g19 g5 (ltRp3793 (dp3794 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3795 (dp3796 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3797 (dp3798 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3799 (dp3800 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Average Compression Ratio' p3801 sg22 I00 sg37 g261 sg39 g3801 sbatRp3802 (dp3803 g12 I76 sg22 I00 sg11 NsbsS'HTTP Client' p3804 g3 (g4 g5 (lp3805 g3 (g7 g8 NtRp3806 (dp3807 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp3808 (dp3809 g18 g3 (g19 g5 (ltRp3810 (dp3811 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3812 (dp3813 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3814 (dp3815 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3816 (dp3817 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Simulated Users' p3818 sg22 I00 sg37 g38 sg39 g3818 sbag3 (g7 g8 NtRp3819 (dp3820 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp3821 (dp3822 g18 g3 (g19 g5 (ltRp3823 (dp3824 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3825 (dp3826 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3827 (dp3828 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3829 (dp3830 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Concurrent Connections' p3831 sg22 I00 sg37 g38 sg39 g3831 sbag3 (g7 g8 NtRp3832 (dp3833 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp3834 (dp3835 g18 g3 (g19 g5 (ltRp3836 (dp3837 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3838 (dp3839 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3840 (dp3841 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3842 (dp3843 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connections' p3844 sg22 I00 sg37 g38 sg39 g3844 sbag3 (g7 g8 NtRp3845 (dp3846 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp3847 (dp3848 g18 g3 (g19 g5 (ltRp3849 (dp3850 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3851 (dp3852 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3853 (dp3854 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3855 (dp3856 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Attempts' p3857 sg22 I00 sg37 g38 sg39 g3857 sbag3 (g7 g8 NtRp3858 (dp3859 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp3860 (dp3861 g18 g3 (g19 g5 (ltRp3862 (dp3863 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3864 (dp3865 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3866 (dp3867 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3868 (dp3869 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Aborts' p3870 sg22 I00 sg37 g38 sg39 g3870 sbag3 (g7 g8 NtRp3871 (dp3872 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp3873 (dp3874 g18 g3 (g19 g5 (ltRp3875 (dp3876 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3877 (dp3878 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3879 (dp3880 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3881 (dp3882 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Aborts' p3883 sg22 I00 sg37 g38 sg39 g3883 sbag3 (g7 g8 NtRp3884 (dp3885 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp3886 (dp3887 g18 g3 (g19 g5 (ltRp3888 (dp3889 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3890 (dp3891 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3892 (dp3893 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3894 (dp3895 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions' p3896 sg22 I00 sg37 g38 sg39 g3896 sbag3 (g7 g8 NtRp3897 (dp3898 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp3899 (dp3900 g18 g3 (g19 g5 (ltRp3901 (dp3902 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3903 (dp3904 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3905 (dp3906 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3907 (dp3908 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes' p3909 sg22 I00 sg37 g38 sg39 g3909 sbag3 (g7 g8 NtRp3910 (dp3911 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp3912 (dp3913 g18 g3 (g19 g5 (ltRp3914 (dp3915 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3916 (dp3917 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3918 (dp3919 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3920 (dp3921 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp3922 (dp3923 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp3924 (dp3925 g18 g3 (g19 g5 (ltRp3926 (dp3927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3928 (dp3929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3930 (dp3931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3932 (dp3933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp3934 (dp3935 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp3936 (dp3937 g18 g3 (g19 g5 (ltRp3938 (dp3939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3940 (dp3941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3942 (dp3943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3944 (dp3945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp3946 (dp3947 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp3948 (dp3949 g18 g3 (g19 g5 (ltRp3950 (dp3951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3952 (dp3953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3954 (dp3955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3956 (dp3957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3958 (dp3959 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp3960 (dp3961 g18 g3 (g19 g5 (ltRp3962 (dp3963 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3964 (dp3965 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3966 (dp3967 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3968 (dp3969 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3970 (dp3971 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp3972 (dp3973 g18 g3 (g19 g5 (ltRp3974 (dp3975 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3976 (dp3977 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3978 (dp3979 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3980 (dp3981 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3982 (dp3983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp3984 (dp3985 g18 g3 (g19 g5 (ltRp3986 (dp3987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3988 (dp3989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3990 (dp3991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3992 (dp3993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3994 (dp3995 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp3996 (dp3997 g18 g3 (g19 g5 (ltRp3998 (dp3999 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4000 (dp4001 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4002 (dp4003 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4004 (dp4005 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp4006 (dp4007 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp4008 (dp4009 g18 g3 (g19 g5 (ltRp4010 (dp4011 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4012 (dp4013 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4014 (dp4015 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4016 (dp4017 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp4018 (dp4019 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp4020 (dp4021 g18 g3 (g19 g5 (ltRp4022 (dp4023 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4024 (dp4025 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4026 (dp4027 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4028 (dp4029 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp4030 (dp4031 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp4032 (dp4033 g18 g3 (g19 g5 (ltRp4034 (dp4035 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4036 (dp4037 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4038 (dp4039 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4040 (dp4041 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp4042 (dp4043 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp4044 (dp4045 g18 g3 (g19 g5 (ltRp4046 (dp4047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4048 (dp4049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4050 (dp4051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4052 (dp4053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp4054 (dp4055 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp4056 (dp4057 g18 g3 (g19 g5 (ltRp4058 (dp4059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4060 (dp4061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4062 (dp4063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4064 (dp4065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp4066 (dp4067 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp4068 (dp4069 g18 g3 (g19 g5 (ltRp4070 (dp4071 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4072 (dp4073 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4074 (dp4075 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4076 (dp4077 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp4078 (dp4079 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp4080 (dp4081 g18 g3 (g19 g5 (ltRp4082 (dp4083 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4084 (dp4085 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4086 (dp4087 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4088 (dp4089 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp4090 (dp4091 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp4092 (dp4093 g18 g3 (g19 g5 (ltRp4094 (dp4095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4096 (dp4097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4098 (dp4099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4100 (dp4101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp4102 (dp4103 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp4104 (dp4105 g18 g3 (g19 g5 (ltRp4106 (dp4107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4108 (dp4109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4110 (dp4111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4112 (dp4113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp4114 (dp4115 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp4116 (dp4117 g18 g3 (g19 g5 (ltRp4118 (dp4119 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4120 (dp4121 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4122 (dp4123 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4124 (dp4125 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp4126 (dp4127 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp4128 (dp4129 g18 g3 (g19 g5 (ltRp4130 (dp4131 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4132 (dp4133 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4134 (dp4135 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4136 (dp4137 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp4138 (dp4139 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp4140 (dp4141 g18 g3 (g19 g5 (ltRp4142 (dp4143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4144 (dp4145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4146 (dp4147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4148 (dp4149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp4150 (dp4151 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp4152 (dp4153 g18 g3 (g19 g5 (ltRp4154 (dp4155 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4156 (dp4157 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4158 (dp4159 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4160 (dp4161 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp4162 (dp4163 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp4164 (dp4165 g18 g3 (g19 g5 (ltRp4166 (dp4167 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4168 (dp4169 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4170 (dp4171 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4172 (dp4173 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp4174 (dp4175 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp4176 (dp4177 g18 g3 (g19 g5 (ltRp4178 (dp4179 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4180 (dp4181 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4182 (dp4183 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4184 (dp4185 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp4186 (dp4187 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp4188 (dp4189 g18 g3 (g19 g5 (ltRp4190 (dp4191 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4192 (dp4193 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4194 (dp4195 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4196 (dp4197 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp4198 (dp4199 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp4200 (dp4201 g18 g3 (g19 g5 (ltRp4202 (dp4203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4204 (dp4205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4206 (dp4207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4208 (dp4209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp4210 (dp4211 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp4212 (dp4213 g18 g3 (g19 g5 (ltRp4214 (dp4215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4216 (dp4217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4218 (dp4219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4220 (dp4221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp4222 (dp4223 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp4224 (dp4225 g18 g3 (g19 g5 (ltRp4226 (dp4227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4228 (dp4229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4230 (dp4231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4232 (dp4233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp4234 (dp4235 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp4236 (dp4237 g18 g3 (g19 g5 (ltRp4238 (dp4239 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4240 (dp4241 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4242 (dp4243 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4244 (dp4245 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp4246 (dp4247 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp4248 (dp4249 g18 g3 (g19 g5 (ltRp4250 (dp4251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4252 (dp4253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4254 (dp4255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4256 (dp4257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p4258 sg22 I00 sg37 g38 sg39 g4258 sbag3 (g7 g8 NtRp4259 (dp4260 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp4261 (dp4262 g18 g3 (g19 g5 (ltRp4263 (dp4264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4265 (dp4266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4267 (dp4268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4269 (dp4270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Request Precondition Failed (412)' p4271 sg22 I00 sg37 g38 sg39 g4271 sbag3 (g7 g8 NtRp4272 (dp4273 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp4274 (dp4275 g18 g3 (g19 g5 (ltRp4276 (dp4277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4278 (dp4279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4280 (dp4281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4282 (dp4283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p4284 sg22 I00 sg37 g38 sg39 g4284 sbag3 (g7 g8 NtRp4285 (dp4286 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp4287 (dp4288 g18 g3 (g19 g5 (ltRp4289 (dp4290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4291 (dp4292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4293 (dp4294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4295 (dp4296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp4297 (dp4298 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp4299 (dp4300 g18 g3 (g19 g5 (ltRp4301 (dp4302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4303 (dp4304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4305 (dp4306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4307 (dp4308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp4309 (dp4310 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp4311 (dp4312 g18 g3 (g19 g5 (ltRp4313 (dp4314 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4315 (dp4316 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4317 (dp4318 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4319 (dp4320 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions Active' p4321 sg22 I00 sg37 g38 sg39 g4321 sbag3 (g7 g8 NtRp4322 (dp4323 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp4324 (dp4325 g18 g3 (g19 g5 (ltRp4326 (dp4327 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4328 (dp4329 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4330 (dp4331 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4332 (dp4333 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Users Active' p4334 sg22 I00 sg37 g38 sg39 g4334 sbag3 (g7 g8 NtRp4335 (dp4336 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp4337 (dp4338 g18 g3 (g19 g5 (ltRp4339 (dp4340 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4341 (dp4342 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4343 (dp4344 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4345 (dp4346 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Received' p4347 sg22 I00 sg37 g38 sg39 g4347 sbag3 (g7 g8 NtRp4348 (dp4349 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp4350 (dp4351 g18 g3 (g19 g5 (ltRp4352 (dp4353 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4354 (dp4355 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4356 (dp4357 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4358 (dp4359 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Received' p4360 sg22 I00 sg37 g38 sg39 g4360 sbag3 (g7 g8 NtRp4361 (dp4362 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp4363 (dp4364 g18 g3 (g19 g5 (ltRp4365 (dp4366 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4367 (dp4368 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4369 (dp4370 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4371 (dp4372 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Received' p4373 sg22 I00 sg37 g38 sg39 g4373 sbag3 (g7 g8 NtRp4374 (dp4375 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp4376 (dp4377 g18 g3 (g19 g5 (ltRp4378 (dp4379 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4380 (dp4381 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4382 (dp4383 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4384 (dp4385 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Unrecognized Content-Encoding Received' p4386 sg22 I00 sg37 g38 sg39 g4386 sbag3 (g7 g8 NtRp4387 (dp4388 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp4389 (dp4390 g18 g3 (g19 g5 (ltRp4391 (dp4392 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4393 (dp4394 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4395 (dp4396 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4397 (dp4398 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Successful' p4399 sg22 I00 sg37 g38 sg39 g4399 sbag3 (g7 g8 NtRp4400 (dp4401 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp4402 (dp4403 g18 g3 (g19 g5 (ltRp4404 (dp4405 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4406 (dp4407 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4408 (dp4409 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4410 (dp4411 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Successful' p4412 sg22 I00 sg37 g38 sg39 g4412 sbag3 (g7 g8 NtRp4413 (dp4414 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp4415 (dp4416 g18 g3 (g19 g5 (ltRp4417 (dp4418 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4419 (dp4420 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4421 (dp4422 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4423 (dp4424 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Successful' p4425 sg22 I00 sg37 g38 sg39 g4425 sbag3 (g7 g8 NtRp4426 (dp4427 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp4428 (dp4429 g18 g3 (g19 g5 (ltRp4430 (dp4431 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4432 (dp4433 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4434 (dp4435 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4436 (dp4437 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Failed' p4438 sg22 I00 sg37 g38 sg39 g4438 sbag3 (g7 g8 NtRp4439 (dp4440 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp4441 (dp4442 g18 g3 (g19 g5 (ltRp4443 (dp4444 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4445 (dp4446 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4447 (dp4448 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4449 (dp4450 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed' p4451 sg22 I00 sg37 g38 sg39 g4451 sbag3 (g7 g8 NtRp4452 (dp4453 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp4454 (dp4455 g18 g3 (g19 g5 (ltRp4456 (dp4457 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4458 (dp4459 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4460 (dp4461 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4462 (dp4463 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed' p4464 sg22 I00 sg37 g38 sg39 g4464 sbag3 (g7 g8 NtRp4465 (dp4466 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp4467 (dp4468 g18 g3 (g19 g5 (ltRp4469 (dp4470 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4471 (dp4472 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4473 (dp4474 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4475 (dp4476 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Data Error' p4477 sg22 I00 sg37 g38 sg39 g4477 sbag3 (g7 g8 NtRp4478 (dp4479 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp4480 (dp4481 g18 g3 (g19 g5 (ltRp4482 (dp4483 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4484 (dp4485 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4486 (dp4487 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4488 (dp4489 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Decoding Error' p4490 sg22 I00 sg37 g38 sg39 g4490 sbag3 (g7 g8 NtRp4491 (dp4492 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp4493 (dp4494 g18 g3 (g19 g5 (ltRp4495 (dp4496 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4497 (dp4498 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4499 (dp4500 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4501 (dp4502 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Data Error' p4503 sg22 I00 sg37 g38 sg39 g4503 sbag3 (g7 g8 NtRp4504 (dp4505 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp4506 (dp4507 g18 g3 (g19 g5 (ltRp4508 (dp4509 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4510 (dp4511 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4512 (dp4513 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4514 (dp4515 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Decoding Error' p4516 sg22 I00 sg37 g38 sg39 g4516 sbag3 (g7 g8 NtRp4517 (dp4518 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp4519 (dp4520 g18 g3 (g19 g5 (ltRp4521 (dp4522 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4523 (dp4524 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4525 (dp4526 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4527 (dp4528 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Headers Received' p4529 sg22 I00 sg37 g38 sg39 g4529 sbag3 (g7 g8 NtRp4530 (dp4531 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp4532 (dp4533 g18 g3 (g19 g5 (ltRp4534 (dp4535 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4536 (dp4537 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4538 (dp4539 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4540 (dp4541 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Responses Received' p4542 sg22 I00 sg37 g38 sg39 g4542 sbag3 (g7 g8 NtRp4543 (dp4544 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp4545 (dp4546 g18 g3 (g19 g5 (ltRp4547 (dp4548 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4549 (dp4550 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4551 (dp4552 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4553 (dp4554 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Successful' p4555 sg22 I00 sg37 g38 sg39 g4555 sbag3 (g7 g8 NtRp4556 (dp4557 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp4558 (dp4559 g18 g3 (g19 g5 (ltRp4560 (dp4561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4562 (dp4563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4564 (dp4565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4566 (dp4567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Failed' p4568 sg22 I00 sg37 g38 sg39 g4568 sbag3 (g7 g8 NtRp4569 (dp4570 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp4571 (dp4572 g18 g3 (g19 g5 (ltRp4573 (dp4574 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4575 (dp4576 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4577 (dp4578 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4579 (dp4580 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Received' p4581 sg22 I00 sg37 g38 sg39 g4581 sbag3 (g7 g8 NtRp4582 (dp4583 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp4584 (dp4585 g18 g3 (g19 g5 (ltRp4586 (dp4587 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4588 (dp4589 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4590 (dp4591 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4592 (dp4593 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Headers Sent' p4594 sg22 I00 sg37 g38 sg39 g4594 sbag3 (g7 g8 NtRp4595 (dp4596 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp4597 (dp4598 g18 g3 (g19 g5 (ltRp4599 (dp4600 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4601 (dp4602 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4603 (dp4604 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4605 (dp4606 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Sent' p4607 sg22 I00 sg37 g38 sg39 g4607 sbag3 (g7 g8 NtRp4608 (dp4609 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp4610 (dp4611 g18 g3 (g19 g5 (ltRp4612 (dp4613 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4614 (dp4615 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4616 (dp4617 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4618 (dp4619 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Responses Received' p4620 sg22 I00 sg37 g38 sg39 g4620 sbag3 (g7 g8 NtRp4621 (dp4622 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp4623 (dp4624 g18 g3 (g19 g5 (ltRp4625 (dp4626 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4627 (dp4628 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4629 (dp4630 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4631 (dp4632 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Successful' p4633 sg22 I00 sg37 g38 sg39 g4633 sbag3 (g7 g8 NtRp4634 (dp4635 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp4636 (dp4637 g18 g3 (g19 g5 (ltRp4638 (dp4639 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4640 (dp4641 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4642 (dp4643 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4644 (dp4645 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Failed' p4646 sg22 I00 sg37 g38 sg39 g4646 sbag3 (g7 g8 NtRp4647 (dp4648 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp4649 (dp4650 g18 g3 (g19 g5 (ltRp4651 (dp4652 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4653 (dp4654 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4655 (dp4656 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4657 (dp4658 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Responses Received' p4659 sg22 I00 sg37 g38 sg39 g4659 sbag3 (g7 g8 NtRp4660 (dp4661 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp4662 (dp4663 g18 g3 (g19 g5 (ltRp4664 (dp4665 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4666 (dp4667 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4668 (dp4669 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4670 (dp4671 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Successful' p4672 sg22 I00 sg37 g38 sg39 g4672 sbag3 (g7 g8 NtRp4673 (dp4674 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp4675 (dp4676 g18 g3 (g19 g5 (ltRp4677 (dp4678 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4679 (dp4680 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4681 (dp4682 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4683 (dp4684 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Failed' p4685 sg22 I00 sg37 g38 sg39 g4685 sbag3 (g7 g8 NtRp4686 (dp4687 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp4688 (dp4689 g18 g3 (g19 g5 (ltRp4690 (dp4691 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4692 (dp4693 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4694 (dp4695 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4696 (dp4697 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p4698 sg22 I00 sg37 g38 sg39 g4698 sbag3 (g7 g8 NtRp4699 (dp4700 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp4701 (dp4702 g18 g3 (g19 g5 (ltRp4703 (dp4704 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4705 (dp4706 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4707 (dp4708 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4709 (dp4710 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p4711 sg22 I00 sg37 g38 sg39 g4711 sbag3 (g7 g8 NtRp4712 (dp4713 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp4714 (dp4715 g18 g3 (g19 g5 (ltRp4716 (dp4717 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4718 (dp4719 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4720 (dp4721 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4722 (dp4723 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p4724 sg22 I00 sg37 g38 sg39 g4724 sbag3 (g7 g8 NtRp4725 (dp4726 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp4727 (dp4728 g18 g3 (g19 g5 (ltRp4729 (dp4730 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4731 (dp4732 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4733 (dp4734 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4735 (dp4736 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p4737 sg22 I00 sg37 g38 sg39 g4737 sbag3 (g7 g8 NtRp4738 (dp4739 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp4740 (dp4741 g18 g3 (g19 g5 (ltRp4742 (dp4743 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4744 (dp4745 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4746 (dp4747 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4748 (dp4749 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Decompressed Content Bytes Received' p4750 sg22 I00 sg37 g38 sg39 g4750 sbag3 (g7 g8 NtRp4751 (dp4752 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp4753 (dp4754 g18 g3 (g19 g5 (ltRp4755 (dp4756 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4757 (dp4758 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4759 (dp4760 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4761 (dp4762 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p4763 sg22 I00 sg37 g38 sg39 g4763 sbag3 (g7 g8 NtRp4764 (dp4765 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp4766 (dp4767 g18 g3 (g19 g5 (ltRp4768 (dp4769 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4770 (dp4771 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4772 (dp4773 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4774 (dp4775 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p4776 sg22 I00 sg37 g38 sg39 g4776 sbag3 (g7 g8 NtRp4777 (dp4778 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp4779 (dp4780 g18 g3 (g19 g5 (ltRp4781 (dp4782 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4783 (dp4784 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4785 (dp4786 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4787 (dp4788 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected' p4789 sg22 I00 sg37 g38 sg39 g4789 sbag3 (g7 g8 NtRp4790 (dp4791 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp4792 (dp4793 g18 g3 (g19 g5 (ltRp4794 (dp4795 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4796 (dp4797 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4798 (dp4799 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4800 (dp4801 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Path Match Failed)' p4802 sg22 I00 sg37 g38 sg39 g4802 sbag3 (g7 g8 NtRp4803 (dp4804 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp4805 (dp4806 g18 g3 (g19 g5 (ltRp4807 (dp4808 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4809 (dp4810 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4811 (dp4812 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4813 (dp4814 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Domain Match Failed)' p4815 sg22 I00 sg37 g38 sg39 g4815 sbag3 (g7 g8 NtRp4816 (dp4817 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp4818 (dp4819 g18 g3 (g19 g5 (ltRp4820 (dp4821 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4822 (dp4823 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4824 (dp4825 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4826 (dp4827 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Cookiejar Overflow)' p4828 sg22 I00 sg37 g38 sg39 g4828 sbag3 (g7 g8 NtRp4829 (dp4830 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp4831 (dp4832 g18 g3 (g19 g5 (ltRp4833 (dp4834 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4835 (dp4836 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4837 (dp4838 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4839 (dp4840 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Probabilistic Reject)' p4841 sg22 I00 sg37 g38 sg39 g4841 sbag3 (g7 g8 NtRp4842 (dp4843 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp4844 (dp4845 g18 g3 (g19 g5 (ltRp4846 (dp4847 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4848 (dp4849 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4850 (dp4851 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4852 (dp4853 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookie headers Rejected - (Memory Overflow)' p4854 sg22 I00 sg37 g38 sg39 g4854 sbag3 (g7 g8 NtRp4855 (dp4856 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp4857 (dp4858 g18 g3 (g19 g5 (ltRp4859 (dp4860 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4861 (dp4862 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4863 (dp4864 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4865 (dp4866 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connect Time (us)' p4867 sg22 I00 sg37 g261 sg39 g4867 sbag3 (g7 g8 NtRp4868 (dp4869 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp4870 (dp4871 g18 g3 (g19 g5 (ltRp4872 (dp4873 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4874 (dp4875 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4876 (dp4877 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4878 (dp4879 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To First Byte (us)' p4880 sg22 I00 sg37 g261 sg39 g4880 sbag3 (g7 g8 NtRp4881 (dp4882 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp4883 (dp4884 g18 g3 (g19 g5 (ltRp4885 (dp4886 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4887 (dp4888 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4889 (dp4890 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4891 (dp4892 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To Last Byte (us)' p4893 sg22 I00 sg37 g261 sg39 g4893 sbag3 (g7 g8 NtRp4894 (dp4895 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp4896 (dp4897 g18 g3 (g19 g5 (ltRp4898 (dp4899 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4900 (dp4901 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4902 (dp4903 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4904 (dp4905 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Average (us)' p4906 sg22 I00 sg37 g261 sg39 g4906 sbag3 (g7 g8 NtRp4907 (dp4908 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp4909 (dp4910 g18 g3 (g19 g5 (ltRp4911 (dp4912 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4913 (dp4914 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4915 (dp4916 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4917 (dp4918 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Minimum (us)' p4919 sg22 I00 sg37 g38 sg39 g4919 sbag3 (g7 g8 NtRp4920 (dp4921 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp4922 (dp4923 g18 g3 (g19 g5 (ltRp4924 (dp4925 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4926 (dp4927 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4928 (dp4929 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4930 (dp4931 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Maximum (us)' p4932 sg22 I00 sg37 g38 sg39 g4932 sbag3 (g7 g8 NtRp4933 (dp4934 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp4935 (dp4936 g18 g3 (g19 g5 (ltRp4937 (dp4938 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4939 (dp4940 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4941 (dp4942 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4943 (dp4944 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Failed' p4945 sg22 I00 sg37 g38 sg39 g4945 sbag3 (g7 g8 NtRp4946 (dp4947 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp4948 (dp4949 g18 g3 (g19 g5 (ltRp4950 (dp4951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4952 (dp4953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4954 (dp4955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4956 (dp4957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Succeeded' p4958 sg22 I00 sg37 g38 sg39 g4958 sbag3 (g7 g8 NtRp4959 (dp4960 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp4961 (dp4962 g18 g3 (g19 g5 (ltRp4963 (dp4964 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4965 (dp4966 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4967 (dp4968 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4969 (dp4970 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Received' p4971 sg22 I00 sg37 g38 sg39 g4971 sbag3 (g7 g8 NtRp4972 (dp4973 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp4974 (dp4975 g18 g3 (g19 g5 (ltRp4976 (dp4977 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4978 (dp4979 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4980 (dp4981 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4982 (dp4983 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Received' p4984 sg22 I00 sg37 g38 sg39 g4984 sbag3 (g7 g8 NtRp4985 (dp4986 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp4987 (dp4988 g18 g3 (g19 g5 (ltRp4989 (dp4990 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4991 (dp4992 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4993 (dp4994 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4995 (dp4996 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Received' p4997 sg22 I00 sg37 g38 sg39 g4997 sbag3 (g7 g8 NtRp4998 (dp4999 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp5000 (dp5001 g18 g3 (g19 g5 (ltRp5002 (dp5003 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5004 (dp5005 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5006 (dp5007 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5008 (dp5009 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Received' p5010 sg22 I00 sg37 g38 sg39 g5010 sbag3 (g7 g8 NtRp5011 (dp5012 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp5013 (dp5014 g18 g3 (g19 g5 (ltRp5015 (dp5016 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5017 (dp5018 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5019 (dp5020 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5021 (dp5022 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Received' p5023 sg22 I00 sg37 g38 sg39 g5023 sbag3 (g7 g8 NtRp5024 (dp5025 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp5026 (dp5027 g18 g3 (g19 g5 (ltRp5028 (dp5029 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5030 (dp5031 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5032 (dp5033 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5034 (dp5035 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Received' p5036 sg22 I00 sg37 g38 sg39 g5036 sbag3 (g7 g8 NtRp5037 (dp5038 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp5039 (dp5040 g18 g3 (g19 g5 (ltRp5041 (dp5042 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5043 (dp5044 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5045 (dp5046 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5047 (dp5048 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Received' p5049 sg22 I00 sg37 g38 sg39 g5049 sbag3 (g7 g8 NtRp5050 (dp5051 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp5052 (dp5053 g18 g3 (g19 g5 (ltRp5054 (dp5055 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5056 (dp5057 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5058 (dp5059 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5060 (dp5061 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Received' p5062 sg22 I00 sg37 g38 sg39 g5062 sbag3 (g7 g8 NtRp5063 (dp5064 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp5065 (dp5066 g18 g3 (g19 g5 (ltRp5067 (dp5068 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5069 (dp5070 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5071 (dp5072 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5073 (dp5074 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Received' p5075 sg22 I00 sg37 g38 sg39 g5075 sbag3 (g7 g8 NtRp5076 (dp5077 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp5078 (dp5079 g18 g3 (g19 g5 (ltRp5080 (dp5081 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5082 (dp5083 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5084 (dp5085 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5086 (dp5087 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Received' p5088 sg22 I00 sg37 g38 sg39 g5088 sbag3 (g7 g8 NtRp5089 (dp5090 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp5091 (dp5092 g18 g3 (g19 g5 (ltRp5093 (dp5094 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5095 (dp5096 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5097 (dp5098 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5099 (dp5100 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Sent' p5101 sg22 I00 sg37 g38 sg39 g5101 sbag3 (g7 g8 NtRp5102 (dp5103 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp5104 (dp5105 g18 g3 (g19 g5 (ltRp5106 (dp5107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5108 (dp5109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5110 (dp5111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5112 (dp5113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Sent' p5114 sg22 I00 sg37 g38 sg39 g5114 sbag3 (g7 g8 NtRp5115 (dp5116 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp5117 (dp5118 g18 g3 (g19 g5 (ltRp5119 (dp5120 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5121 (dp5122 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5123 (dp5124 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5125 (dp5126 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Sent' p5127 sg22 I00 sg37 g38 sg39 g5127 sbag3 (g7 g8 NtRp5128 (dp5129 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp5130 (dp5131 g18 g3 (g19 g5 (ltRp5132 (dp5133 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5134 (dp5135 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5136 (dp5137 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5138 (dp5139 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Sent' p5140 sg22 I00 sg37 g38 sg39 g5140 sbag3 (g7 g8 NtRp5141 (dp5142 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp5143 (dp5144 g18 g3 (g19 g5 (ltRp5145 (dp5146 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5147 (dp5148 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5149 (dp5150 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5151 (dp5152 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Sent' p5153 sg22 I00 sg37 g38 sg39 g5153 sbag3 (g7 g8 NtRp5154 (dp5155 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp5156 (dp5157 g18 g3 (g19 g5 (ltRp5158 (dp5159 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5160 (dp5161 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5162 (dp5163 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5164 (dp5165 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Sent' p5166 sg22 I00 sg37 g38 sg39 g5166 sbag3 (g7 g8 NtRp5167 (dp5168 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp5169 (dp5170 g18 g3 (g19 g5 (ltRp5171 (dp5172 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5173 (dp5174 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5175 (dp5176 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5177 (dp5178 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Sent' p5179 sg22 I00 sg37 g38 sg39 g5179 sbag3 (g7 g8 NtRp5180 (dp5181 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp5182 (dp5183 g18 g3 (g19 g5 (ltRp5184 (dp5185 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5186 (dp5187 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5188 (dp5189 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5190 (dp5191 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Sent' p5192 sg22 I00 sg37 g38 sg39 g5192 sbag3 (g7 g8 NtRp5193 (dp5194 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp5195 (dp5196 g18 g3 (g19 g5 (ltRp5197 (dp5198 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5199 (dp5200 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5201 (dp5202 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5203 (dp5204 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Sent' p5205 sg22 I00 sg37 g38 sg39 g5205 sbag3 (g7 g8 NtRp5206 (dp5207 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp5208 (dp5209 g18 g3 (g19 g5 (ltRp5210 (dp5211 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5212 (dp5213 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5214 (dp5215 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5216 (dp5217 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Sent' p5218 sg22 I00 sg37 g38 sg39 g5218 sbag3 (g7 g8 NtRp5219 (dp5220 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp5221 (dp5222 g18 g3 (g19 g5 (ltRp5223 (dp5224 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5225 (dp5226 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5227 (dp5228 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5229 (dp5230 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Client' p5231 sg22 I00 sg37 g38 sg39 g5231 sbag3 (g7 g8 NtRp5232 (dp5233 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp5234 (dp5235 g18 g3 (g19 g5 (ltRp5236 (dp5237 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5238 (dp5239 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5240 (dp5241 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5242 (dp5243 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Server' p5244 sg22 I00 sg37 g38 sg39 g5244 sbag3 (g7 g8 NtRp5245 (dp5246 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp5247 (dp5248 g18 g3 (g19 g5 (ltRp5249 (dp5250 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5251 (dp5252 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5253 (dp5254 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5255 (dp5256 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Client to Server)' p5257 sg22 I00 sg37 g38 sg39 g5257 sbag3 (g7 g8 NtRp5258 (dp5259 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp5260 (dp5261 g18 g3 (g19 g5 (ltRp5262 (dp5263 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5264 (dp5265 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5266 (dp5267 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5268 (dp5269 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Server to Client)' p5270 sg22 I00 sg37 g38 sg39 g5270 sbag3 (g7 g8 NtRp5271 (dp5272 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp5273 (dp5274 g18 g3 (g19 g5 (ltRp5275 (dp5276 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5277 (dp5278 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5279 (dp5280 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5281 (dp5282 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Client to Server)' p5283 sg22 I00 sg37 g38 sg39 g5283 sbag3 (g7 g8 NtRp5284 (dp5285 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp5286 (dp5287 g18 g3 (g19 g5 (ltRp5288 (dp5289 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5290 (dp5291 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5292 (dp5293 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5294 (dp5295 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Server to Client)' p5296 sg22 I00 sg37 g38 sg39 g5296 sbag3 (g7 g8 NtRp5297 (dp5298 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp5299 (dp5300 g18 g3 (g19 g5 (ltRp5301 (dp5302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5303 (dp5304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5305 (dp5306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5307 (dp5308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Succeeded' p5309 sg22 I00 sg37 g38 sg39 g5309 sbag3 (g7 g8 NtRp5310 (dp5311 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp5312 (dp5313 g18 g3 (g19 g5 (ltRp5314 (dp5315 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5316 (dp5317 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5318 (dp5319 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5320 (dp5321 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Failed' p5322 sg22 I00 sg37 g38 sg39 g5322 sbag3 (g7 g8 NtRp5323 (dp5324 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp5325 (dp5326 g18 g3 (g19 g5 (ltRp5327 (dp5328 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5329 (dp5330 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5331 (dp5332 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5333 (dp5334 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Protocol Error' p5335 sg22 I00 sg37 g38 sg39 g5335 sbag3 (g7 g8 NtRp5336 (dp5337 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp5338 (dp5339 g18 g3 (g19 g5 (ltRp5340 (dp5341 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5342 (dp5343 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5344 (dp5345 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5346 (dp5347 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Internal Error' p5348 sg22 I00 sg37 g38 sg39 g5348 sbag3 (g7 g8 NtRp5349 (dp5350 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp5351 (dp5352 g18 g3 (g19 g5 (ltRp5353 (dp5354 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5355 (dp5356 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5357 (dp5358 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5359 (dp5360 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Flow Control Error' p5361 sg22 I00 sg37 g38 sg39 g5361 sbag3 (g7 g8 NtRp5362 (dp5363 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp5364 (dp5365 g18 g3 (g19 g5 (ltRp5366 (dp5367 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5368 (dp5369 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5370 (dp5371 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5372 (dp5373 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Timeout Error' p5374 sg22 I00 sg37 g38 sg39 g5374 sbag3 (g7 g8 NtRp5375 (dp5376 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp5377 (dp5378 g18 g3 (g19 g5 (ltRp5379 (dp5380 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5381 (dp5382 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5383 (dp5384 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5385 (dp5386 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Closed Error' p5387 sg22 I00 sg37 g38 sg39 g5387 sbag3 (g7 g8 NtRp5388 (dp5389 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp5390 (dp5391 g18 g3 (g19 g5 (ltRp5392 (dp5393 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5394 (dp5395 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5396 (dp5397 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5398 (dp5399 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Frame Size Error' p5400 sg22 I00 sg37 g38 sg39 g5400 sbag3 (g7 g8 NtRp5401 (dp5402 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp5403 (dp5404 g18 g3 (g19 g5 (ltRp5405 (dp5406 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5407 (dp5408 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5409 (dp5410 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5411 (dp5412 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Refused Stream Error' p5413 sg22 I00 sg37 g38 sg39 g5413 sbag3 (g7 g8 NtRp5414 (dp5415 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp5416 (dp5417 g18 g3 (g19 g5 (ltRp5418 (dp5419 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5420 (dp5421 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5422 (dp5423 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5424 (dp5425 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Cancelled Error' p5426 sg22 I00 sg37 g38 sg39 g5426 sbag3 (g7 g8 NtRp5427 (dp5428 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp5429 (dp5430 g18 g3 (g19 g5 (ltRp5431 (dp5432 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5433 (dp5434 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5435 (dp5436 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5437 (dp5438 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Compression Error' p5439 sg22 I00 sg37 g38 sg39 g5439 sbag3 (g7 g8 NtRp5440 (dp5441 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp5442 (dp5443 g18 g3 (g19 g5 (ltRp5444 (dp5445 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5446 (dp5447 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5448 (dp5449 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5450 (dp5451 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connect Error' p5452 sg22 I00 sg37 g38 sg39 g5452 sbag3 (g7 g8 NtRp5453 (dp5454 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp5455 (dp5456 g18 g3 (g19 g5 (ltRp5457 (dp5458 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5459 (dp5460 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5461 (dp5462 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5463 (dp5464 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Enhance Calm Error' p5465 sg22 I00 sg37 g38 sg39 g5465 sbag3 (g7 g8 NtRp5466 (dp5467 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp5468 (dp5469 g18 g3 (g19 g5 (ltRp5470 (dp5471 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5472 (dp5473 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5474 (dp5475 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5476 (dp5477 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Inadequate Security Error' p5478 sg22 I00 sg37 g38 sg39 g5478 sbag3 (g7 g8 NtRp5479 (dp5480 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp5481 (dp5482 g18 g3 (g19 g5 (ltRp5483 (dp5484 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5485 (dp5486 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5487 (dp5488 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5489 (dp5490 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 HTTP1_1 Required Error' p5491 sg22 I00 sg37 g38 sg39 g5491 sbag3 (g7 g8 NtRp5492 (dp5493 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp5494 (dp5495 g18 g3 (g19 g5 (ltRp5496 (dp5497 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5498 (dp5499 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5500 (dp5501 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5502 (dp5503 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p5504 sg22 I00 sg37 g38 sg39 g5504 sbag3 (g7 g8 NtRp5505 (dp5506 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp5507 (dp5508 g18 g3 (g19 g5 (ltRp5509 (dp5510 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5511 (dp5512 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5513 (dp5514 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5515 (dp5516 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p5517 sg22 I00 sg37 g38 sg39 g5517 sbag3 (g7 g8 NtRp5518 (dp5519 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp5520 (dp5521 g18 g3 (g19 g5 (ltRp5522 (dp5523 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5524 (dp5525 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5526 (dp5527 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5528 (dp5529 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p5530 sg22 I00 sg37 g38 sg39 g5530 sbag3 (g7 g8 NtRp5531 (dp5532 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp5533 (dp5534 g18 g3 (g19 g5 (ltRp5535 (dp5536 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5537 (dp5538 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5539 (dp5540 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5541 (dp5542 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p5543 sg22 I00 sg37 g38 sg39 g5543 sbag3 (g7 g8 NtRp5544 (dp5545 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp5546 (dp5547 g18 g3 (g19 g5 (ltRp5548 (dp5549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5550 (dp5551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5552 (dp5553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5554 (dp5555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p5556 sg22 I00 sg37 g38 sg39 g5556 sbag3 (g7 g8 NtRp5557 (dp5558 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp5559 (dp5560 g18 g3 (g19 g5 (ltRp5561 (dp5562 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5563 (dp5564 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5565 (dp5566 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5567 (dp5568 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p5569 sg22 I00 sg37 g38 sg39 g5569 sbag3 (g7 g8 NtRp5570 (dp5571 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp5572 (dp5573 g18 g3 (g19 g5 (ltRp5574 (dp5575 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5576 (dp5577 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5578 (dp5579 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5580 (dp5581 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p5582 sg22 I00 sg37 g38 sg39 g5582 sbag3 (g7 g8 NtRp5583 (dp5584 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp5585 (dp5586 g18 g3 (g19 g5 (ltRp5587 (dp5588 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5589 (dp5590 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5591 (dp5592 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5593 (dp5594 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p5595 sg22 I00 sg37 g38 sg39 g5595 sbag3 (g7 g8 NtRp5596 (dp5597 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp5598 (dp5599 g18 g3 (g19 g5 (ltRp5600 (dp5601 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5602 (dp5603 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5604 (dp5605 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5606 (dp5607 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p5608 sg22 I00 sg37 g38 sg39 g5608 sbag3 (g7 g8 NtRp5609 (dp5610 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp5611 (dp5612 g18 g3 (g19 g5 (ltRp5613 (dp5614 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5615 (dp5616 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5617 (dp5618 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5619 (dp5620 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p5621 sg22 I00 sg37 g38 sg39 g5621 sbag3 (g7 g8 NtRp5622 (dp5623 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp5624 (dp5625 g18 g3 (g19 g5 (ltRp5626 (dp5627 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5628 (dp5629 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5630 (dp5631 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5632 (dp5633 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p5634 sg22 I00 sg37 g38 sg39 g5634 sbag3 (g7 g8 NtRp5635 (dp5636 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp5637 (dp5638 g18 g3 (g19 g5 (ltRp5639 (dp5640 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5641 (dp5642 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5643 (dp5644 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5645 (dp5646 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p5647 sg22 I00 sg37 g38 sg39 g5647 sbag3 (g7 g8 NtRp5648 (dp5649 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp5650 (dp5651 g18 g3 (g19 g5 (ltRp5652 (dp5653 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5654 (dp5655 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5656 (dp5657 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5658 (dp5659 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p5660 sg22 I00 sg37 g38 sg39 g5660 sbag3 (g7 g8 NtRp5661 (dp5662 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp5663 (dp5664 g18 g3 (g19 g5 (ltRp5665 (dp5666 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5667 (dp5668 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5669 (dp5670 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5671 (dp5672 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p5673 sg22 I00 sg37 g38 sg39 g5673 sbag3 (g7 g8 NtRp5674 (dp5675 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp5676 (dp5677 g18 g3 (g19 g5 (ltRp5678 (dp5679 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5680 (dp5681 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5682 (dp5683 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5684 (dp5685 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p5686 sg22 I00 sg37 g38 sg39 g5686 sbag3 (g7 g8 NtRp5687 (dp5688 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp5689 (dp5690 g18 g3 (g19 g5 (ltRp5691 (dp5692 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5693 (dp5694 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5695 (dp5696 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5697 (dp5698 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p5699 sg22 I00 sg37 g38 sg39 g5699 sbag3 (g7 g8 NtRp5700 (dp5701 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp5702 (dp5703 g18 g3 (g19 g5 (ltRp5704 (dp5705 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5706 (dp5707 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5708 (dp5709 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5710 (dp5711 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p5712 sg22 I00 sg37 g38 sg39 g5712 sbag3 (g7 g8 NtRp5713 (dp5714 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp5715 (dp5716 g18 g3 (g19 g5 (ltRp5717 (dp5718 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5719 (dp5720 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5721 (dp5722 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5723 (dp5724 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p5725 sg22 I00 sg37 g38 sg39 g5725 sbag3 (g7 g8 NtRp5726 (dp5727 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp5728 (dp5729 g18 g3 (g19 g5 (ltRp5730 (dp5731 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5732 (dp5733 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5734 (dp5735 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5736 (dp5737 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p5738 sg22 I00 sg37 g38 sg39 g5738 sbag3 (g7 g8 NtRp5739 (dp5740 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp5741 (dp5742 g18 g3 (g19 g5 (ltRp5743 (dp5744 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5745 (dp5746 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5747 (dp5748 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5749 (dp5750 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p5751 sg22 I00 sg37 g38 sg39 g5751 sbag3 (g7 g8 NtRp5752 (dp5753 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp5754 (dp5755 g18 g3 (g19 g5 (ltRp5756 (dp5757 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5758 (dp5759 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5760 (dp5761 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5762 (dp5763 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p5764 sg22 I00 sg37 g38 sg39 g5764 sbag3 (g7 g8 NtRp5765 (dp5766 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp5767 (dp5768 g18 g3 (g19 g5 (ltRp5769 (dp5770 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5771 (dp5772 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5773 (dp5774 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5775 (dp5776 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p5777 sg22 I00 sg37 g38 sg39 g5777 sbag3 (g7 g8 NtRp5778 (dp5779 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp5780 (dp5781 g18 g3 (g19 g5 (ltRp5782 (dp5783 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5784 (dp5785 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5786 (dp5787 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5788 (dp5789 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p5790 sg22 I00 sg37 g38 sg39 g5790 sbag3 (g7 g8 NtRp5791 (dp5792 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp5793 (dp5794 g18 g3 (g19 g5 (ltRp5795 (dp5796 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5797 (dp5798 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5799 (dp5800 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5801 (dp5802 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p5803 sg22 I00 sg37 g38 sg39 g5803 sbag3 (g7 g8 NtRp5804 (dp5805 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp5806 (dp5807 g18 g3 (g19 g5 (ltRp5808 (dp5809 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5810 (dp5811 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5812 (dp5813 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5814 (dp5815 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p5816 sg22 I00 sg37 g38 sg39 g5816 sbag3 (g7 g8 NtRp5817 (dp5818 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp5819 (dp5820 g18 g3 (g19 g5 (ltRp5821 (dp5822 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5823 (dp5824 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5825 (dp5826 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5827 (dp5828 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p5829 sg22 I00 sg37 g38 sg39 g5829 sbag3 (g7 g8 NtRp5830 (dp5831 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp5832 (dp5833 g18 g3 (g19 g5 (ltRp5834 (dp5835 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5836 (dp5837 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5838 (dp5839 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5840 (dp5841 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p5842 sg22 I00 sg37 g38 sg39 g5842 sbag3 (g7 g8 NtRp5843 (dp5844 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp5845 (dp5846 g18 g3 (g19 g5 (ltRp5847 (dp5848 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5849 (dp5850 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5851 (dp5852 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5853 (dp5854 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p5855 sg22 I00 sg37 g38 sg39 g5855 sbag3 (g7 g8 NtRp5856 (dp5857 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp5858 (dp5859 g18 g3 (g19 g5 (ltRp5860 (dp5861 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5862 (dp5863 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5864 (dp5865 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5866 (dp5867 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p5868 sg22 I00 sg37 g38 sg39 g5868 sbag3 (g7 g8 NtRp5869 (dp5870 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp5871 (dp5872 g18 g3 (g19 g5 (ltRp5873 (dp5874 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5875 (dp5876 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5877 (dp5878 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5879 (dp5880 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p5881 sg22 I00 sg37 g38 sg39 g5881 sbag3 (g7 g8 NtRp5882 (dp5883 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp5884 (dp5885 g18 g3 (g19 g5 (ltRp5886 (dp5887 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5888 (dp5889 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5890 (dp5891 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5892 (dp5893 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p5894 sg22 I00 sg37 g38 sg39 g5894 sbag3 (g7 g8 NtRp5895 (dp5896 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp5897 (dp5898 g18 g3 (g19 g5 (ltRp5899 (dp5900 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5901 (dp5902 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5903 (dp5904 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5905 (dp5906 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p5907 sg22 I00 sg37 g38 sg39 g5907 sbag3 (g7 g8 NtRp5908 (dp5909 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp5910 (dp5911 g18 g3 (g19 g5 (ltRp5912 (dp5913 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5914 (dp5915 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5916 (dp5917 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5918 (dp5919 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p5920 sg22 I00 sg37 g38 sg39 g5920 sbag3 (g7 g8 NtRp5921 (dp5922 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp5923 (dp5924 g18 g3 (g19 g5 (ltRp5925 (dp5926 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5927 (dp5928 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5929 (dp5930 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5931 (dp5932 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p5933 sg22 I00 sg37 g38 sg39 g5933 sbag3 (g7 g8 NtRp5934 (dp5935 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp5936 (dp5937 g18 g3 (g19 g5 (ltRp5938 (dp5939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5940 (dp5941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5942 (dp5943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5944 (dp5945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p5946 sg22 I00 sg37 g38 sg39 g5946 sbag3 (g7 g8 NtRp5947 (dp5948 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp5949 (dp5950 g18 g3 (g19 g5 (ltRp5951 (dp5952 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5953 (dp5954 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5955 (dp5956 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5957 (dp5958 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p5959 sg22 I00 sg37 g38 sg39 g5959 sbag3 (g7 g8 NtRp5960 (dp5961 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp5962 (dp5963 g18 g3 (g19 g5 (ltRp5964 (dp5965 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5966 (dp5967 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5968 (dp5969 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5970 (dp5971 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p5972 sg22 I00 sg37 g38 sg39 g5972 sbag3 (g7 g8 NtRp5973 (dp5974 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp5975 (dp5976 g18 g3 (g19 g5 (ltRp5977 (dp5978 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5979 (dp5980 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5981 (dp5982 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5983 (dp5984 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p5985 sg22 I00 sg37 g38 sg39 g5985 sbag3 (g7 g8 NtRp5986 (dp5987 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp5988 (dp5989 g18 g3 (g19 g5 (ltRp5990 (dp5991 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5992 (dp5993 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5994 (dp5995 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5996 (dp5997 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p5998 sg22 I00 sg37 g38 sg39 g5998 sbag3 (g7 g8 NtRp5999 (dp6000 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp6001 (dp6002 g18 g3 (g19 g5 (ltRp6003 (dp6004 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6005 (dp6006 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6007 (dp6008 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6009 (dp6010 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p6011 sg22 I00 sg37 g38 sg39 g6011 sbag3 (g7 g8 NtRp6012 (dp6013 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp6014 (dp6015 g18 g3 (g19 g5 (ltRp6016 (dp6017 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6018 (dp6019 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6020 (dp6021 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6022 (dp6023 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p6024 sg22 I00 sg37 g38 sg39 g6024 sbag3 (g7 g8 NtRp6025 (dp6026 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp6027 (dp6028 g18 g3 (g19 g5 (ltRp6029 (dp6030 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6031 (dp6032 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6033 (dp6034 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6035 (dp6036 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p6037 sg22 I00 sg37 g38 sg39 g6037 sbag3 (g7 g8 NtRp6038 (dp6039 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp6040 (dp6041 g18 g3 (g19 g5 (ltRp6042 (dp6043 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6044 (dp6045 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6046 (dp6047 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6048 (dp6049 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p6050 sg22 I00 sg37 g38 sg39 g6050 sbag3 (g7 g8 NtRp6051 (dp6052 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp6053 (dp6054 g18 g3 (g19 g5 (ltRp6055 (dp6056 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6057 (dp6058 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6059 (dp6060 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6061 (dp6062 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p6063 sg22 I00 sg37 g38 sg39 g6063 sbag3 (g7 g8 NtRp6064 (dp6065 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp6066 (dp6067 g18 g3 (g19 g5 (ltRp6068 (dp6069 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6070 (dp6071 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6072 (dp6073 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6074 (dp6075 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p6076 sg22 I00 sg37 g38 sg39 g6076 sbag3 (g7 g8 NtRp6077 (dp6078 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp6079 (dp6080 g18 g3 (g19 g5 (ltRp6081 (dp6082 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6083 (dp6084 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6085 (dp6086 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6087 (dp6088 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p6089 sg22 I00 sg37 g38 sg39 g6089 sbag3 (g7 g8 NtRp6090 (dp6091 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp6092 (dp6093 g18 g3 (g19 g5 (ltRp6094 (dp6095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6096 (dp6097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6098 (dp6099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6100 (dp6101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p6102 sg22 I00 sg37 g38 sg39 g6102 sbag3 (g7 g8 NtRp6103 (dp6104 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp6105 (dp6106 g18 g3 (g19 g5 (ltRp6107 (dp6108 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6109 (dp6110 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6111 (dp6112 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6113 (dp6114 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p6115 sg22 I00 sg37 g38 sg39 g6115 sbag3 (g7 g8 NtRp6116 (dp6117 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp6118 (dp6119 g18 g3 (g19 g5 (ltRp6120 (dp6121 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6122 (dp6123 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6124 (dp6125 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6126 (dp6127 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p6128 sg22 I00 sg37 g38 sg39 g6128 sbag3 (g7 g8 NtRp6129 (dp6130 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp6131 (dp6132 g18 g3 (g19 g5 (ltRp6133 (dp6134 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6135 (dp6136 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6137 (dp6138 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6139 (dp6140 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p6141 sg22 I00 sg37 g38 sg39 g6141 sbag3 (g7 g8 NtRp6142 (dp6143 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp6144 (dp6145 g18 g3 (g19 g5 (ltRp6146 (dp6147 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6148 (dp6149 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6150 (dp6151 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6152 (dp6153 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p6154 sg22 I00 sg37 g38 sg39 g6154 sbag3 (g7 g8 NtRp6155 (dp6156 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp6157 (dp6158 g18 g3 (g19 g5 (ltRp6159 (dp6160 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6161 (dp6162 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6163 (dp6164 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6165 (dp6166 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p6167 sg22 I00 sg37 g38 sg39 g6167 sbag3 (g7 g8 NtRp6168 (dp6169 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp6170 (dp6171 g18 g3 (g19 g5 (ltRp6172 (dp6173 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6174 (dp6175 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6176 (dp6177 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6178 (dp6179 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p6180 sg22 I00 sg37 g38 sg39 g6180 sbag3 (g7 g8 NtRp6181 (dp6182 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp6183 (dp6184 g18 g3 (g19 g5 (ltRp6185 (dp6186 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6187 (dp6188 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6189 (dp6190 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6191 (dp6192 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p6193 sg22 I00 sg37 g38 sg39 g6193 sbag3 (g7 g8 NtRp6194 (dp6195 g11 Nsg12 I186 sg13 I01 sg14 g3 (g15 g8 NtRp6196 (dp6197 g18 g3 (g19 g5 (ltRp6198 (dp6199 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6200 (dp6201 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6202 (dp6203 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6204 (dp6205 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p6206 sg22 I00 sg37 g38 sg39 g6206 sbag3 (g7 g8 NtRp6207 (dp6208 g11 Nsg12 I187 sg13 I01 sg14 g3 (g15 g8 NtRp6209 (dp6210 g18 g3 (g19 g5 (ltRp6211 (dp6212 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6213 (dp6214 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6215 (dp6216 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6217 (dp6218 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p6219 sg22 I00 sg37 g38 sg39 g6219 sbag3 (g7 g8 NtRp6220 (dp6221 g11 Nsg12 I188 sg13 I01 sg14 g3 (g15 g8 NtRp6222 (dp6223 g18 g3 (g19 g5 (ltRp6224 (dp6225 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6226 (dp6227 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6228 (dp6229 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6230 (dp6231 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p6232 sg22 I00 sg37 g38 sg39 g6232 sbag3 (g7 g8 NtRp6233 (dp6234 g11 Nsg12 I189 sg13 I01 sg14 g3 (g15 g8 NtRp6235 (dp6236 g18 g3 (g19 g5 (ltRp6237 (dp6238 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6239 (dp6240 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6241 (dp6242 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6243 (dp6244 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p6245 sg22 I00 sg37 g38 sg39 g6245 sbag3 (g7 g8 NtRp6246 (dp6247 g11 Nsg12 I190 sg13 I01 sg14 g3 (g15 g8 NtRp6248 (dp6249 g18 g3 (g19 g5 (ltRp6250 (dp6251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6252 (dp6253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6254 (dp6255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6256 (dp6257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p6258 sg22 I00 sg37 g38 sg39 g6258 sbag3 (g7 g8 NtRp6259 (dp6260 g11 Nsg12 I191 sg13 I01 sg14 g3 (g15 g8 NtRp6261 (dp6262 g18 g3 (g19 g5 (ltRp6263 (dp6264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6265 (dp6266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6267 (dp6268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6269 (dp6270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p6271 sg22 I00 sg37 g38 sg39 g6271 sbag3 (g7 g8 NtRp6272 (dp6273 g11 Nsg12 I192 sg13 I01 sg14 g3 (g15 g8 NtRp6274 (dp6275 g18 g3 (g19 g5 (ltRp6276 (dp6277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6278 (dp6279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6280 (dp6281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6282 (dp6283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p6284 sg22 I00 sg37 g38 sg39 g6284 sbag3 (g7 g8 NtRp6285 (dp6286 g11 Nsg12 I193 sg13 I01 sg14 g3 (g15 g8 NtRp6287 (dp6288 g18 g3 (g19 g5 (ltRp6289 (dp6290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6291 (dp6292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6293 (dp6294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6295 (dp6296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p6297 sg22 I00 sg37 g38 sg39 g6297 sbag3 (g7 g8 NtRp6298 (dp6299 g11 Nsg12 I194 sg13 I01 sg14 g3 (g15 g8 NtRp6300 (dp6301 g18 g3 (g19 g5 (ltRp6302 (dp6303 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6304 (dp6305 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6306 (dp6307 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6308 (dp6309 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p6310 sg22 I00 sg37 g38 sg39 g6310 sbag3 (g7 g8 NtRp6311 (dp6312 g11 Nsg12 I195 sg13 I01 sg14 g3 (g15 g8 NtRp6313 (dp6314 g18 g3 (g19 g5 (ltRp6315 (dp6316 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6317 (dp6318 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6319 (dp6320 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6321 (dp6322 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p6323 sg22 I00 sg37 g38 sg39 g6323 sbag3 (g7 g8 NtRp6324 (dp6325 g11 Nsg12 I196 sg13 I01 sg14 g3 (g15 g8 NtRp6326 (dp6327 g18 g3 (g19 g5 (ltRp6328 (dp6329 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6330 (dp6331 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6332 (dp6333 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6334 (dp6335 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p6336 sg22 I00 sg37 g38 sg39 g6336 sbag3 (g7 g8 NtRp6337 (dp6338 g11 Nsg12 I197 sg13 I01 sg14 g3 (g15 g8 NtRp6339 (dp6340 g18 g3 (g19 g5 (ltRp6341 (dp6342 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6343 (dp6344 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6345 (dp6346 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6347 (dp6348 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p6349 sg22 I00 sg37 g38 sg39 g6349 sbag3 (g7 g8 NtRp6350 (dp6351 g11 Nsg12 I198 sg13 I01 sg14 g3 (g15 g8 NtRp6352 (dp6353 g18 g3 (g19 g5 (ltRp6354 (dp6355 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6356 (dp6357 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6358 (dp6359 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6360 (dp6361 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p6362 sg22 I00 sg37 g38 sg39 g6362 sbag3 (g7 g8 NtRp6363 (dp6364 g11 Nsg12 I199 sg13 I01 sg14 g3 (g15 g8 NtRp6365 (dp6366 g18 g3 (g19 g5 (ltRp6367 (dp6368 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6369 (dp6370 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6371 (dp6372 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6373 (dp6374 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p6375 sg22 I00 sg37 g38 sg39 g6375 sbag3 (g7 g8 NtRp6376 (dp6377 g11 Nsg12 I200 sg13 I01 sg14 g3 (g15 g8 NtRp6378 (dp6379 g18 g3 (g19 g5 (ltRp6380 (dp6381 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6382 (dp6383 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6384 (dp6385 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6386 (dp6387 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p6388 sg22 I00 sg37 g38 sg39 g6388 sbag3 (g7 g8 NtRp6389 (dp6390 g11 Nsg12 I201 sg13 I01 sg14 g3 (g15 g8 NtRp6391 (dp6392 g18 g3 (g19 g5 (ltRp6393 (dp6394 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6395 (dp6396 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6397 (dp6398 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6399 (dp6400 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p6401 sg22 I00 sg37 g38 sg39 g6401 sbag3 (g7 g8 NtRp6402 (dp6403 g11 Nsg12 I202 sg13 I01 sg14 g3 (g15 g8 NtRp6404 (dp6405 g18 g3 (g19 g5 (ltRp6406 (dp6407 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6408 (dp6409 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6410 (dp6411 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6412 (dp6413 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p6414 sg22 I00 sg37 g38 sg39 g6414 sbag3 (g7 g8 NtRp6415 (dp6416 g11 Nsg12 I203 sg13 I01 sg14 g3 (g15 g8 NtRp6417 (dp6418 g18 g3 (g19 g5 (ltRp6419 (dp6420 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6421 (dp6422 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6423 (dp6424 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6425 (dp6426 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p6427 sg22 I00 sg37 g38 sg39 g6427 sbag3 (g7 g8 NtRp6428 (dp6429 g11 Nsg12 I204 sg13 I01 sg14 g3 (g15 g8 NtRp6430 (dp6431 g18 g3 (g19 g5 (ltRp6432 (dp6433 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6434 (dp6435 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6436 (dp6437 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6438 (dp6439 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p6440 sg22 I00 sg37 g38 sg39 g6440 sbag3 (g7 g8 NtRp6441 (dp6442 g11 Nsg12 I205 sg13 I01 sg14 g3 (g15 g8 NtRp6443 (dp6444 g18 g3 (g19 g5 (ltRp6445 (dp6446 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6447 (dp6448 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6449 (dp6450 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6451 (dp6452 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p6453 sg22 I00 sg37 g38 sg39 g6453 sbag3 (g7 g8 NtRp6454 (dp6455 g11 Nsg12 I206 sg13 I01 sg14 g3 (g15 g8 NtRp6456 (dp6457 g18 g3 (g19 g5 (ltRp6458 (dp6459 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6460 (dp6461 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6462 (dp6463 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6464 (dp6465 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p6466 sg22 I00 sg37 g38 sg39 g6466 sbag3 (g7 g8 NtRp6467 (dp6468 g11 Nsg12 I207 sg13 I01 sg14 g3 (g15 g8 NtRp6469 (dp6470 g18 g3 (g19 g5 (ltRp6471 (dp6472 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6473 (dp6474 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6475 (dp6476 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6477 (dp6478 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p6479 sg22 I00 sg37 g38 sg39 g6479 sbag3 (g7 g8 NtRp6480 (dp6481 g11 Nsg12 I208 sg13 I01 sg14 g3 (g15 g8 NtRp6482 (dp6483 g18 g3 (g19 g5 (ltRp6484 (dp6485 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6486 (dp6487 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6488 (dp6489 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6490 (dp6491 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p6492 sg22 I00 sg37 g38 sg39 g6492 sbag3 (g7 g8 NtRp6493 (dp6494 g11 Nsg12 I209 sg13 I01 sg14 g3 (g15 g8 NtRp6495 (dp6496 g18 g3 (g19 g5 (ltRp6497 (dp6498 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6499 (dp6500 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6501 (dp6502 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6503 (dp6504 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p6505 sg22 I00 sg37 g38 sg39 g6505 sbag3 (g7 g8 NtRp6506 (dp6507 g11 Nsg12 I210 sg13 I01 sg14 g3 (g15 g8 NtRp6508 (dp6509 g18 g3 (g19 g5 (ltRp6510 (dp6511 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6512 (dp6513 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6514 (dp6515 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6516 (dp6517 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p6518 sg22 I00 sg37 g38 sg39 g6518 sbag3 (g7 g8 NtRp6519 (dp6520 g11 Nsg12 I211 sg13 I01 sg14 g3 (g15 g8 NtRp6521 (dp6522 g18 g3 (g19 g5 (ltRp6523 (dp6524 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6525 (dp6526 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6527 (dp6528 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6529 (dp6530 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p6531 sg22 I00 sg37 g38 sg39 g6531 sbag3 (g7 g8 NtRp6532 (dp6533 g11 Nsg12 I212 sg13 I01 sg14 g3 (g15 g8 NtRp6534 (dp6535 g18 g3 (g19 g5 (ltRp6536 (dp6537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6538 (dp6539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6540 (dp6541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6542 (dp6543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p6544 sg22 I00 sg37 g38 sg39 g6544 sbag3 (g7 g8 NtRp6545 (dp6546 g11 Nsg12 I213 sg13 I01 sg14 g3 (g15 g8 NtRp6547 (dp6548 g18 g3 (g19 g5 (ltRp6549 (dp6550 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6551 (dp6552 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6553 (dp6554 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6555 (dp6556 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p6557 sg22 I00 sg37 g38 sg39 g6557 sbag3 (g7 g8 NtRp6558 (dp6559 g11 Nsg12 I214 sg13 I01 sg14 g3 (g15 g8 NtRp6560 (dp6561 g18 g3 (g19 g5 (ltRp6562 (dp6563 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6564 (dp6565 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6566 (dp6567 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6568 (dp6569 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p6570 sg22 I00 sg37 g38 sg39 g6570 sbag3 (g7 g8 NtRp6571 (dp6572 g11 Nsg12 I215 sg13 I01 sg14 g3 (g15 g8 NtRp6573 (dp6574 g18 g3 (g19 g5 (ltRp6575 (dp6576 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6577 (dp6578 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6579 (dp6580 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6581 (dp6582 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p6583 sg22 I00 sg37 g38 sg39 g6583 sbag3 (g7 g8 NtRp6584 (dp6585 g11 Nsg12 I216 sg13 I01 sg14 g3 (g15 g8 NtRp6586 (dp6587 g18 g3 (g19 g5 (ltRp6588 (dp6589 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6590 (dp6591 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6592 (dp6593 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6594 (dp6595 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p6596 sg22 I00 sg37 g38 sg39 g6596 sbag3 (g7 g8 NtRp6597 (dp6598 g11 Nsg12 I217 sg13 I01 sg14 g3 (g15 g8 NtRp6599 (dp6600 g18 g3 (g19 g5 (ltRp6601 (dp6602 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6603 (dp6604 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6605 (dp6606 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6607 (dp6608 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p6609 sg22 I00 sg37 g38 sg39 g6609 sbag3 (g7 g8 NtRp6610 (dp6611 g11 Nsg12 I218 sg13 I01 sg14 g3 (g15 g8 NtRp6612 (dp6613 g18 g3 (g19 g5 (ltRp6614 (dp6615 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6616 (dp6617 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6618 (dp6619 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6620 (dp6621 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p6622 sg22 I00 sg37 g38 sg39 g6622 sbag3 (g7 g8 NtRp6623 (dp6624 g11 Nsg12 I219 sg13 I01 sg14 g3 (g15 g8 NtRp6625 (dp6626 g18 g3 (g19 g5 (ltRp6627 (dp6628 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6629 (dp6630 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6631 (dp6632 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6633 (dp6634 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p6635 sg22 I00 sg37 g38 sg39 g6635 sbag3 (g7 g8 NtRp6636 (dp6637 g11 Nsg12 I220 sg13 I01 sg14 g3 (g15 g8 NtRp6638 (dp6639 g18 g3 (g19 g5 (ltRp6640 (dp6641 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6642 (dp6643 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6644 (dp6645 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6646 (dp6647 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p6648 sg22 I00 sg37 g38 sg39 g6648 sbag3 (g7 g8 NtRp6649 (dp6650 g11 Nsg12 I221 sg13 I01 sg14 g3 (g15 g8 NtRp6651 (dp6652 g18 g3 (g19 g5 (ltRp6653 (dp6654 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6655 (dp6656 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6657 (dp6658 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6659 (dp6660 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p6661 sg22 I00 sg37 g38 sg39 g6661 sbag3 (g7 g8 NtRp6662 (dp6663 g11 Nsg12 I222 sg13 I01 sg14 g3 (g15 g8 NtRp6664 (dp6665 g18 g3 (g19 g5 (ltRp6666 (dp6667 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6668 (dp6669 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6670 (dp6671 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6672 (dp6673 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p6674 sg22 I00 sg37 g38 sg39 g6674 sbag3 (g7 g8 NtRp6675 (dp6676 g11 Nsg12 I223 sg13 I01 sg14 g3 (g15 g8 NtRp6677 (dp6678 g18 g3 (g19 g5 (ltRp6679 (dp6680 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6681 (dp6682 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6683 (dp6684 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6685 (dp6686 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p6687 sg22 I00 sg37 g38 sg39 g6687 sbag3 (g7 g8 NtRp6688 (dp6689 g11 Nsg12 I224 sg13 I01 sg14 g3 (g15 g8 NtRp6690 (dp6691 g18 g3 (g19 g5 (ltRp6692 (dp6693 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6694 (dp6695 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6696 (dp6697 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6698 (dp6699 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p6700 sg22 I00 sg37 g38 sg39 g6700 sbag3 (g7 g8 NtRp6701 (dp6702 g11 Nsg12 I225 sg13 I01 sg14 g3 (g15 g8 NtRp6703 (dp6704 g18 g3 (g19 g5 (ltRp6705 (dp6706 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6707 (dp6708 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6709 (dp6710 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6711 (dp6712 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p6713 sg22 I00 sg37 g38 sg39 g6713 sbag3 (g7 g8 NtRp6714 (dp6715 g11 Nsg12 I226 sg13 I01 sg14 g3 (g15 g8 NtRp6716 (dp6717 g18 g3 (g19 g5 (ltRp6718 (dp6719 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6720 (dp6721 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6722 (dp6723 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6724 (dp6725 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p6726 sg22 I00 sg37 g38 sg39 g6726 sbag3 (g7 g8 NtRp6727 (dp6728 g11 Nsg12 I227 sg13 I01 sg14 g3 (g15 g8 NtRp6729 (dp6730 g18 g3 (g19 g5 (ltRp6731 (dp6732 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6733 (dp6734 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6735 (dp6736 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6737 (dp6738 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p6739 sg22 I00 sg37 g38 sg39 g6739 sbag3 (g7 g8 NtRp6740 (dp6741 g11 Nsg12 I228 sg13 I01 sg14 g3 (g15 g8 NtRp6742 (dp6743 g18 g3 (g19 g5 (ltRp6744 (dp6745 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6746 (dp6747 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6748 (dp6749 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6750 (dp6751 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p6752 sg22 I00 sg37 g38 sg39 g6752 sbag3 (g7 g8 NtRp6753 (dp6754 g11 Nsg12 I229 sg13 I01 sg14 g3 (g15 g8 NtRp6755 (dp6756 g18 g3 (g19 g5 (ltRp6757 (dp6758 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6759 (dp6760 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6761 (dp6762 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6763 (dp6764 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p6765 sg22 I00 sg37 g38 sg39 g6765 sbag3 (g7 g8 NtRp6766 (dp6767 g11 Nsg12 I230 sg13 I01 sg14 g3 (g15 g8 NtRp6768 (dp6769 g18 g3 (g19 g5 (ltRp6770 (dp6771 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6772 (dp6773 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6774 (dp6775 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6776 (dp6777 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p6778 sg22 I00 sg37 g38 sg39 g6778 sbag3 (g7 g8 NtRp6779 (dp6780 g11 Nsg12 I231 sg13 I01 sg14 g3 (g15 g8 NtRp6781 (dp6782 g18 g3 (g19 g5 (ltRp6783 (dp6784 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6785 (dp6786 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6787 (dp6788 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6789 (dp6790 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p6791 sg22 I00 sg37 g38 sg39 g6791 sbag3 (g7 g8 NtRp6792 (dp6793 g11 Nsg12 I232 sg13 I01 sg14 g3 (g15 g8 NtRp6794 (dp6795 g18 g3 (g19 g5 (ltRp6796 (dp6797 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6798 (dp6799 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6800 (dp6801 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6802 (dp6803 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p6804 sg22 I00 sg37 g38 sg39 g6804 sbag3 (g7 g8 NtRp6805 (dp6806 g11 Nsg12 I233 sg13 I01 sg14 g3 (g15 g8 NtRp6807 (dp6808 g18 g3 (g19 g5 (ltRp6809 (dp6810 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6811 (dp6812 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6813 (dp6814 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6815 (dp6816 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p6817 sg22 I00 sg37 g38 sg39 g6817 sbag3 (g7 g8 NtRp6818 (dp6819 g11 Nsg12 I234 sg13 I01 sg14 g3 (g15 g8 NtRp6820 (dp6821 g18 g3 (g19 g5 (ltRp6822 (dp6823 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6824 (dp6825 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6826 (dp6827 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6828 (dp6829 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p6830 sg22 I00 sg37 g38 sg39 g6830 sbag3 (g7 g8 NtRp6831 (dp6832 g11 Nsg12 I235 sg13 I01 sg14 g3 (g15 g8 NtRp6833 (dp6834 g18 g3 (g19 g5 (ltRp6835 (dp6836 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6837 (dp6838 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6839 (dp6840 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6841 (dp6842 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p6843 sg22 I00 sg37 g38 sg39 g6843 sbag3 (g7 g8 NtRp6844 (dp6845 g11 Nsg12 I236 sg13 I01 sg14 g3 (g15 g8 NtRp6846 (dp6847 g18 g3 (g19 g5 (ltRp6848 (dp6849 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6850 (dp6851 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6852 (dp6853 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6854 (dp6855 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p6856 sg22 I00 sg37 g38 sg39 g6856 sbag3 (g7 g8 NtRp6857 (dp6858 g11 Nsg12 I237 sg13 I01 sg14 g3 (g15 g8 NtRp6859 (dp6860 g18 g3 (g19 g5 (ltRp6861 (dp6862 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6863 (dp6864 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6865 (dp6866 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6867 (dp6868 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p6869 sg22 I00 sg37 g38 sg39 g6869 sbag3 (g7 g8 NtRp6870 (dp6871 g11 Nsg12 I238 sg13 I01 sg14 g3 (g15 g8 NtRp6872 (dp6873 g18 g3 (g19 g5 (ltRp6874 (dp6875 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6876 (dp6877 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6878 (dp6879 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6880 (dp6881 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p6882 sg22 I00 sg37 g38 sg39 g6882 sbag3 (g7 g8 NtRp6883 (dp6884 g11 Nsg12 I239 sg13 I01 sg14 g3 (g15 g8 NtRp6885 (dp6886 g18 g3 (g19 g5 (ltRp6887 (dp6888 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6889 (dp6890 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6891 (dp6892 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6893 (dp6894 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p6895 sg22 I00 sg37 g38 sg39 g6895 sbag3 (g7 g8 NtRp6896 (dp6897 g11 Nsg12 I240 sg13 I01 sg14 g3 (g15 g8 NtRp6898 (dp6899 g18 g3 (g19 g5 (ltRp6900 (dp6901 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6902 (dp6903 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6904 (dp6905 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6906 (dp6907 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p6908 sg22 I00 sg37 g38 sg39 g6908 sbag3 (g7 g8 NtRp6909 (dp6910 g11 Nsg12 I241 sg13 I01 sg14 g3 (g15 g8 NtRp6911 (dp6912 g18 g3 (g19 g5 (ltRp6913 (dp6914 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6915 (dp6916 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6917 (dp6918 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6919 (dp6920 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p6921 sg22 I00 sg37 g38 sg39 g6921 sbag3 (g7 g8 NtRp6922 (dp6923 g11 Nsg12 I242 sg13 I01 sg14 g3 (g15 g8 NtRp6924 (dp6925 g18 g3 (g19 g5 (ltRp6926 (dp6927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6928 (dp6929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6930 (dp6931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6932 (dp6933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p6934 sg22 I00 sg37 g38 sg39 g6934 sbag3 (g7 g8 NtRp6935 (dp6936 g11 Nsg12 I243 sg13 I01 sg14 g3 (g15 g8 NtRp6937 (dp6938 g18 g3 (g19 g5 (ltRp6939 (dp6940 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6941 (dp6942 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6943 (dp6944 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6945 (dp6946 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p6947 sg22 I00 sg37 g38 sg39 g6947 sbag3 (g7 g8 NtRp6948 (dp6949 g11 Nsg12 I244 sg13 I01 sg14 g3 (g15 g8 NtRp6950 (dp6951 g18 g3 (g19 g5 (ltRp6952 (dp6953 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6954 (dp6955 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6956 (dp6957 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6958 (dp6959 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p6960 sg22 I00 sg37 g38 sg39 g6960 sbatRp6961 (dp6962 g12 I244 sg22 I00 sg11 Nsbs.</svRestConfiguration> </statManagerOptions> <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> diff --git a/samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml b/samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml new file mode 100644 index 000000000..7b52f7dae --- /dev/null +++ b/samples/vnf_samples/traffic_profiles/ixload/http_ixload.yaml @@ -0,0 +1,56 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or imp +# See the License for the specific language governing permissions and +# limitations under the License. + +schema: "nsb:traffic_profile:0.1" + +name: TrafficProfileGenericHTTP +description: Traffic profile to run HTTP test +traffic_profile: + traffic_type: TrafficProfileGenericHTTP + +uplink_0: + ip: + address: "172.16.50.132" # must be in same subnet with gateway + subnet_prefix: 24 # subnet prefix + mac: "00:00:00:00:44:33" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> # will be taken from pod file + + http_client: + simulated_users: {{ get(simulated_users, 'simulated_users.uplink_0') }} + page_object: {{ get(page_object, 'page_object.uplink_0', '/1b.html') }} + +downlink_0: + ip: + address: "172.16.31.132" # must be in same subnet with gateway + subnet_prefix: 24 # subnet prefix + mac: "00:00:00:00:44:44" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> # will be taken from pod file + +uplink_1: + ip: + address: "12.12.12.32" + subnet_prefix: 24 + mac: "Auto" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> + + http_client: + simulated_users: {{ get(simulated_users, 'simulated_users.uplink_1', '65000') }} # number of threads to be run + page_object: {{ get(page_object, 'page_object.uplink_1', '/1b.html') }} # http locator to be read + +downlink_1: + ip: + address: "13.13.13.32" + subnet_prefix: 24 + mac: "Auto" # port mac addr or auto to generate automatically + gateway: <GATEWAY_ADDR> diff --git a/samples/vnf_samples/traffic_profiles/prox_irq.yaml b/samples/vnf_samples/traffic_profiles/prox_irq.yaml new file mode 100644 index 000000000..32e27e186 --- /dev/null +++ b/samples/vnf_samples/traffic_profiles/prox_irq.yaml @@ -0,0 +1,22 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +schema: "nsb:traffic_profile:0.1" + +name: prox_irq +description: Query IRQ Interval + +traffic_profile: + traffic_type: ProxIrqProfile + diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-64K.rxf b/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-64K.rxf deleted file mode 100644 index 3600855bf..000000000 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_2Ports-CC-64K.rxf +++ /dev/null @@ -1,1284 +0,0 @@ -<?xml version="1.0" ?> -<root ver="[21, [1, [0, [0]]]]" type="ixRepository"> - <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="6628a634-d6ea-4f86-94a7-816e8fc2917e" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c284265e-5fc6-4a6a-ad6e-a8c3f465d00b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> - </_smSessionXml> - <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> - <xml type="str"></xml> - </_composerConfig> - <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig"> - <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> - </_quickTestConfig> - <lastApiUniqueId type="int">15481</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_2Ports-CC-64K.rxf</name> - <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_2Ports-CC-4K.rxf</last> - <activeTest type="str">Test1</activeTest> - <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> - <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> - <_apiUniqueId type="int">12991</_apiUniqueId> - <chassisMap type="dict"/> - <hiddenChassis type="NoneType">None</hiddenChassis> - </chassisChain> - <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/> - <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/> - <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/> - <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/> - <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope"> - <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope"> - <name type="str">Test1</name> - <comment type="str"></comment> - <enableForceOwnership type="bool">False</enableForceOwnership> - <enableResetPorts type="bool">False</enableResetPorts> - <statsRequired type="int">1</statsRequired> - <enableConditionalView type="bool">False</enableConditionalView> - <conditionalViewType type="int">0</conditionalViewType> - <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/> - <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun> - <csvInterval type="int">4</csvInterval> - <networkFailureThreshold type="int">0</networkFailureThreshold> - <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions"> - <runMode type="int">1</runMode> - <collectScheme type="int">0</collectScheme> - <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage> - <captureRunAfter type="int">0</captureRunAfter> - <captureRunDuration type="int">0</captureRunDuration> - <_apiUniqueId type="int">12941</_apiUniqueId> - </captureViewOptions> - <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario"> - <item ver="[3, [1, [0, [0]]]]" type="ixScenario"> - <name type="str">TrafficFlow1</name> - <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn"> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Client</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP client</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">newClientActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">12943</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">HTTP server_newServerActivity1</name> - <portMapPolicy type="str">portPairs</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP server</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">newServerActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="bool">False</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12972</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="str">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12973</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12987</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12988</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">12984</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12974</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12975</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12976</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12977</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">12978</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">12979</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">12980</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">12981</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">12982</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">12983</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12985</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12986</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">2</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12971</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> - <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="3"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId> - <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="4"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="5"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="6"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">newServerActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12989</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ref="9"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12970</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12956</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="3"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="3"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="6"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="6"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12955</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="10"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">newServerActivity1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">1</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">1</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">1</httpVersion> - <keepAlive type="bool">False</keepAlive> - <maxPersistentRequests type="int">0</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">:80</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">:443</httpsProxy> - <browserEmulation type="int">1</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="bool">False</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12948</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12945</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12949</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/64k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="bool">False</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12946</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12947</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12950</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12951</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12952</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12953</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">1</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12942</_apiUniqueId> - <uniqueID type="int">1</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> - <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="11"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId> - <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="12"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="13"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="14"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">newClientActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> - <name type="str">Timeline1</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">30000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">32000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">0</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portMesh</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="15"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12940</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12926</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="11"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="11"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="14"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="14"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">30000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12925</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="16"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </item> - </elementList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12922</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">DUT</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12923</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Server</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ref="17"/> - </elementList> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12924</_apiUniqueId> - </item> - </columnList> - <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/> - <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12921</_apiUniqueId> - </item> - </scenarioList> - <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> - <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics> - <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig> - <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops> - <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun> - <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging> - <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats> - <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats> - <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported> - <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits> - <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/> - <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective> - <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings"> - <disabledEventClasses type="str"></disabledEventClasses> - <disabledPorts type="str"></disabledPorts> - <_apiUniqueId type="int">12990</_apiUniqueId> - </eventHandlerSettings> - <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes> - <networkProtocolOptions type="NoneType">None</networkProtocolOptions> - <seedForRandomBehavior type="int">0</seedForRandomBehavior> - <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor> - <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor> - <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory"> - <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory"> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Playlist</name> - <categoryId type="str">playlist</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Random Data</name> - <categoryId type="str">rdge</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory"> - <startcore type="int">0</startcore> - <totalcores type="int">1</totalcores> - </pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">1</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Real File</name> - <categoryId type="str">realfile</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">2</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Unified File System</name> - <categoryId type="str">ufs</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">3</objectID> - </item> - </categoryList> - <_profileMru type="str"></_profileMru> - </profileDirectory> - <communityList type="NoneType">None</communityList> - <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest> - <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12920</_apiUniqueId> - <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration> - <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions"> - <pollingInterval type="int">2</pollingInterval> - <allowCsvLogging type="bool">False</allowCsvLogging> - <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6&EOXC@8_BL1*U6[TN9P(-!2VA'EF$9# 1'FD+:KRB2&>B<DC.UPS&K_ M^]K.00@)K78_M''\/.]AY[']FLZ'_=I7MHA0' 9W-: 9M0_W'8=!]@6C'2)' MJ*DU#<W0S%:SQ@F(BMX1IDSYA YW-;AA>(^A1K?:1EA0A@(7:3G>5P(W'.+& MO<EX/AC/%?V^,YT-'-[LSNW)N/C^,NC;\^[#:"" WN3IP1X/^EEHFK7>D\!9 M\/O.D* ?$><<E"WT(W17,VLR$-V.PM4*!ZNT?PA]BB0VQVOD' +W ;W"+0Y) MRC RE#*XWDP)<K',+,'K$A^L"$]&3.O\L$$I!B0VX=/LA]";DI AE^5LYR1" MA<0>L>>A0#BBYSD. KCP41\RZ+"0H'/"]#@[^3P:9=87(_&$)A';1"R;R:?( M9WCC%\<F27WG#=H3W O949Y?+Z(L7'_DW^PUXS33F$/LHRED&2+[NSXBC*9/ MA6LZH.T]Q7>U5\8V;5W?[7;:KJZ%9*6;A@'T;T\CQWU%:ZCB@'\T/AFUS,I[ MVTH&U=.H?;2$?$QRGD[?).T4[I$P40%!B*.%]QGT</B1A-&F ." W9L=73PZ M>B6KYV,4L&%(UI$/'<08UTOV[?Z^^F7?O^7_NK=7/Z*0W7Z)%W?\THX?0+/B MQN]G;#& A/O'$?SSV/SGV(R7!%\0LR@HYG'EL]N3?2>-;,0-A:LD]+A% D1L MJ8)FW/YPM6*WN<RXJR2*'2Q#!Q$,??P3BB7T %<Y)<3F[Y9#DLE1$^^SCUFG M.2J*R'+]PI+9X"K'+E_I&UKDQ4PQGC%<(X&*-A"=>KZWW*8'&5J%Y" 88@GK MC_/Y-+/-H^?VO>4J75B",&P_V]_LKCH?.'/G6?A1M\.O+_9TVW@QIR%7O=KK MJ>!!(_NEC%"P+T\0D70 'CT.ZMA[;M6/Y)@5O1)^W"4BOL!QWN*(-":+O\3. MNT7T$NL1KUY]_L<J6=G^RFR^=S*\Q(@(INNYUF+A>JJ%W(7: #<+=6$"I()6 MRS"0Z0&S;LDYJ7)P'HJ+*:\3_@J U91.<M"YW6>*B&/W!>BH0+54$Z@MTZHW M+*M15YN&"9H\F6O5,EMFO64V#+5N-&]NFBWI.F==FA+7-V'(FP2"81J@I0*@ M&JTYJ+>M1AM86M,TK&M@JL9UVS#2;$^L*OR&_ SG#(4OYW: _61),GY")JNU MXI/$F^(3=%]Q@-)IZ8^=CZH0>:S?,LH;GKJ>)TYTP03-&\VT&II9-S1@WAP- MVVUPNEGI52[.@]G[,6*[D'Q/MVG.NM;,N JK2V=EE N.9LA'D,JQV?L1KS>4 M:PT8RJ![ZBQ'N^ L7>N]]C/?S%8$KA6Q!5#EU_UU\[=GFU=CSW&49Y&U6HQ2 MO5?8^QG:\$T&D=RPZEI+C!RT$B\EE/(E^_G)<:$O1P.,1'"%_G-#9YN#/RWX M5BW,3GI+12HKDS,92N/W' "Y@P)17C/0R4:<9!4"Z86^S_<L4<9)12,&^0?P M8IF=8I7&(P1)@#QQ> K>4I1W>0<%O-+/T ]WLB"AI6Y.X4HO?.\33%D("J)< MVSDW1?R2HZ3TO^2K2*EVQ^ORT U].^"*6T(7E7LL954ZG8410S,8K,J]%> R M-^N-V#WFF5R*4U^&5^GRHMYB77J'0*B6W[=*3K\3RA=1Z)V1LJ574:T)=EQ9 M9[>T_W!!S IO<4$)_(-\!Z)CA(/OR#L6YD<;/5'"L45+<7&1O>]((2L!/R7N M:M);+7>#KIWB\5VFIH3$0T3>=:#+A4%':(O\]-*I2PM^HPW6F\O764Y(Z@-Y M9\G=9P74"X,E7D4$YF^08M8I!UT.RN^1O&\AB7.,#T]AGQRC4-9!Y\>KAZA+ ML%1( N;*7>Z5'VD^/\_2,DM\[210/JZ'MF\8Y!AZ/O/_JPUI+L8I'ME/'/?_ % D1BE1\ end </svConfiguration> - <svRestConfiguration type="str">(dp1 S'HTTP Server Per URL' p2 ccopy_reg _reconstructor p3 (cLib.Rest.ixPersistentStatSource ixConfiguredStatsList p4 c__builtin__ list p5 (lp6 g3 (cLib.Rest.ixPersistentStatSource ixConfiguredStat p7 c__builtin__ object p8 NtRp9 (dp10 S'proxyPropertyList' p11 NsS'_objectID' p12 I0 sS'enabled' p13 I01 sS'filterList' p14 g3 (cLib.Rest.ixPersistentStatSource ixRestFilters p15 g8 NtRp16 (dp17 S'cardFilters' p18 g3 (cLib.Rest.ixPersistentStatSource ixCardFilterList p19 g5 (ltRp20 (dp21 g12 I-1 sS'_resourceLocked' p22 I00 sg11 NsbsS'activityFilters' p23 g3 (cLib.Rest.ixPersistentStatSource ixActivityFilterList p24 g5 (ltRp25 (dp26 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sS'chassisFilters' p27 g3 (cLib.Rest.ixPersistentStatSource ixChassisFilterList p28 g5 (ltRp29 (dp30 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sS'portFilters' p31 g3 (cLib.Rest.ixPersistentStatSource ixPortFilterList p32 g5 (ltRp33 (dp34 g12 I-1 sg22 I00 sg11 NsbsbsS'caption' p35 S'HTTP Requests Received' p36 sg22 I00 sS'aggregationType' p37 S'kSum' p38 sS'statName' p39 g36 sbag3 (g7 g8 NtRp40 (dp41 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp42 (dp43 g18 g3 (g19 g5 (ltRp44 (dp45 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp46 (dp47 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp48 (dp49 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp50 (dp51 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp53 (dp54 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp55 (dp56 g18 g3 (g19 g5 (ltRp57 (dp58 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp59 (dp60 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp61 (dp62 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp63 (dp64 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp66 (dp67 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp68 (dp69 g18 g3 (g19 g5 (ltRp70 (dp71 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp72 (dp73 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp74 (dp75 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp76 (dp77 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (50x)' p78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp79 (dp80 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp81 (dp82 g18 g3 (g19 g5 (ltRp83 (dp84 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp85 (dp86 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp87 (dp88 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp89 (dp90 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write Error)' p91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp92 (dp93 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp94 (dp95 g18 g3 (g19 g5 (ltRp96 (dp97 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp98 (dp99 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp100 (dp101 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp102 (dp103 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent' p104 sg22 I00 sg37 g38 sg39 g104 sbag3 (g7 g8 NtRp105 (dp106 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp107 (dp108 g18 g3 (g19 g5 (ltRp109 (dp110 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp111 (dp112 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp113 (dp114 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp115 (dp116 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (1xx)' p117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp118 (dp119 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp120 (dp121 g18 g3 (g19 g5 (ltRp122 (dp123 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp124 (dp125 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp126 (dp127 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp128 (dp129 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (2xx)' p130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp131 (dp132 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp133 (dp134 g18 g3 (g19 g5 (ltRp135 (dp136 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp137 (dp138 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp139 (dp140 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp141 (dp142 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (3xx)' p143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp144 (dp145 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp146 (dp147 g18 g3 (g19 g5 (ltRp148 (dp149 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp150 (dp151 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp152 (dp153 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp154 (dp155 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (4xx)' p156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp157 (dp158 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp159 (dp160 g18 g3 (g19 g5 (ltRp161 (dp162 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp163 (dp164 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp165 (dp166 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp167 (dp168 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (5xx)' p169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp170 (dp171 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp172 (dp173 g18 g3 (g19 g5 (ltRp174 (dp175 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp176 (dp177 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp178 (dp179 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp180 (dp181 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Sent (Other)' p182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp183 (dp184 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp185 (dp186 g18 g3 (g19 g5 (ltRp187 (dp188 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp189 (dp190 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp191 (dp192 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp193 (dp194 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Write Error)' p195 sg22 I00 sg37 g38 sg39 g195 sbag3 (g7 g8 NtRp196 (dp197 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp198 (dp199 g18 g3 (g19 g5 (ltRp200 (dp201 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp202 (dp203 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp204 (dp205 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp206 (dp207 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Aborted)' p208 sg22 I00 sg37 g38 sg39 g208 sbag3 (g7 g8 NtRp209 (dp210 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp211 (dp212 g18 g3 (g19 g5 (ltRp213 (dp214 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp215 (dp216 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp217 (dp218 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp219 (dp220 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Failed (Other)' p221 sg22 I00 sg37 g38 sg39 g221 sbag3 (g7 g8 NtRp222 (dp223 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp224 (dp225 g18 g3 (g19 g5 (ltRp226 (dp227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp228 (dp229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp230 (dp231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp232 (dp233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Sent' p234 sg22 I00 sg37 g38 sg39 g234 sbag3 (g7 g8 NtRp235 (dp236 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp237 (dp238 g18 g3 (g19 g5 (ltRp239 (dp240 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp241 (dp242 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp243 (dp244 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp245 (dp246 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp248 (dp249 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp250 (dp251 g18 g3 (g19 g5 (ltRp252 (dp253 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp254 (dp255 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp256 (dp257 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp258 (dp259 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p260 sg22 I00 sg37 S'kWeightedAverage' p261 sg39 g260 sbag3 (g7 g8 NtRp262 (dp263 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp264 (dp265 g18 g3 (g19 g5 (ltRp266 (dp267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp268 (dp269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp270 (dp271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp272 (dp273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p274 sg22 I00 sg37 g261 sg39 g274 sbag3 (g7 g8 NtRp275 (dp276 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp277 (dp278 g18 g3 (g19 g5 (ltRp279 (dp280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp281 (dp282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp283 (dp284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp285 (dp286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Received' p287 sg22 I00 sg37 g38 sg39 g287 sbag3 (g7 g8 NtRp288 (dp289 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp290 (dp291 g18 g3 (g19 g5 (ltRp292 (dp293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp294 (dp295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp296 (dp297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp298 (dp299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp301 (dp302 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp303 (dp304 g18 g3 (g19 g5 (ltRp305 (dp306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp307 (dp308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp309 (dp310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp311 (dp312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Received Chunk Size' p313 sg22 I00 sg37 g261 sg39 g313 sbag3 (g7 g8 NtRp314 (dp315 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp316 (dp317 g18 g3 (g19 g5 (ltRp318 (dp319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp320 (dp321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp322 (dp323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp324 (dp325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p326 sg22 I00 sg37 g261 sg39 g326 sbag3 (g7 g8 NtRp327 (dp328 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp329 (dp330 g18 g3 (g19 g5 (ltRp331 (dp332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp333 (dp334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp335 (dp336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp337 (dp338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Received' p339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp340 (dp341 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp342 (dp343 g18 g3 (g19 g5 (ltRp344 (dp345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp346 (dp347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp348 (dp349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp350 (dp351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Successful' p352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp353 (dp354 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp355 (dp356 g18 g3 (g19 g5 (ltRp357 (dp358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp359 (dp360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp361 (dp362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp363 (dp364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Check Failed' p365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp366 (dp367 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp368 (dp369 g18 g3 (g19 g5 (ltRp370 (dp371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp372 (dp373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp374 (dp375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp376 (dp377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Request Received' p378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp379 (dp380 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp381 (dp382 g18 g3 (g19 g5 (ltRp383 (dp384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp385 (dp386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp387 (dp388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp389 (dp390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP OPTIONS Response Sent' p391 sg22 I00 sg37 g38 sg39 g391 sbatRp392 (dp393 g12 I27 sg22 I00 sg11 NsbsS'HTTP Server' p394 g3 (g4 g5 (lp395 g3 (g7 g8 NtRp396 (dp397 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp398 (dp399 g18 g3 (g19 g5 (ltRp400 (dp401 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp402 (dp403 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp404 (dp405 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp406 (dp407 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g36 sg22 I00 sg37 g38 sg39 g36 sbag3 (g7 g8 NtRp408 (dp409 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp410 (dp411 g18 g3 (g19 g5 (ltRp412 (dp413 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp414 (dp415 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp416 (dp417 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp418 (dp419 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g52 sg22 I00 sg37 g38 sg39 g52 sbag3 (g7 g8 NtRp420 (dp421 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp422 (dp423 g18 g3 (g19 g5 (ltRp424 (dp425 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp426 (dp427 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp428 (dp429 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp430 (dp431 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p432 sg22 I00 sg37 g38 sg39 g432 sbag3 (g7 g8 NtRp433 (dp434 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp435 (dp436 g18 g3 (g19 g5 (ltRp437 (dp438 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp439 (dp440 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp441 (dp442 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp443 (dp444 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g65 sg22 I00 sg37 g38 sg39 g65 sbag3 (g7 g8 NtRp445 (dp446 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp447 (dp448 g18 g3 (g19 g5 (ltRp449 (dp450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp451 (dp452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp453 (dp454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp455 (dp456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g78 sg22 I00 sg37 g38 sg39 g78 sbag3 (g7 g8 NtRp457 (dp458 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp459 (dp460 g18 g3 (g19 g5 (ltRp461 (dp462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp463 (dp464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp465 (dp466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp467 (dp468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g91 sg22 I00 sg37 g38 sg39 g91 sbag3 (g7 g8 NtRp469 (dp470 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp471 (dp472 g18 g3 (g19 g5 (ltRp473 (dp474 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp475 (dp476 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp477 (dp478 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp479 (dp480 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p481 sg22 I00 sg37 g38 sg39 g481 sbag3 (g7 g8 NtRp482 (dp483 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp484 (dp485 g18 g3 (g19 g5 (ltRp486 (dp487 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp488 (dp489 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp490 (dp491 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp492 (dp493 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p494 sg22 I00 sg37 g38 sg39 g494 sbag3 (g7 g8 NtRp495 (dp496 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp497 (dp498 g18 g3 (g19 g5 (ltRp499 (dp500 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp501 (dp502 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp503 (dp504 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp505 (dp506 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p507 sg22 I00 sg37 g38 sg39 g507 sbag3 (g7 g8 NtRp508 (dp509 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp510 (dp511 g18 g3 (g19 g5 (ltRp512 (dp513 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp514 (dp515 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp516 (dp517 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp518 (dp519 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g117 sg22 I00 sg37 g38 sg39 g117 sbag3 (g7 g8 NtRp520 (dp521 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp522 (dp523 g18 g3 (g19 g5 (ltRp524 (dp525 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp526 (dp527 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp528 (dp529 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp530 (dp531 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g130 sg22 I00 sg37 g38 sg39 g130 sbag3 (g7 g8 NtRp532 (dp533 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp534 (dp535 g18 g3 (g19 g5 (ltRp536 (dp537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp538 (dp539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp540 (dp541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp542 (dp543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g143 sg22 I00 sg37 g38 sg39 g143 sbag3 (g7 g8 NtRp544 (dp545 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp546 (dp547 g18 g3 (g19 g5 (ltRp548 (dp549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp550 (dp551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp552 (dp553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp554 (dp555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g156 sg22 I00 sg37 g38 sg39 g156 sbag3 (g7 g8 NtRp556 (dp557 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp558 (dp559 g18 g3 (g19 g5 (ltRp560 (dp561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp562 (dp563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp564 (dp565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp566 (dp567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g169 sg22 I00 sg37 g38 sg39 g169 sbag3 (g7 g8 NtRp568 (dp569 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp570 (dp571 g18 g3 (g19 g5 (ltRp572 (dp573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp574 (dp575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp576 (dp577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp578 (dp579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g182 sg22 I00 sg37 g38 sg39 g182 sbag3 (g7 g8 NtRp580 (dp581 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp582 (dp583 g18 g3 (g19 g5 (ltRp584 (dp585 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp586 (dp587 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp588 (dp589 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp590 (dp591 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p592 sg22 I00 sg37 g38 sg39 g592 sbag3 (g7 g8 NtRp593 (dp594 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp595 (dp596 g18 g3 (g19 g5 (ltRp597 (dp598 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp599 (dp600 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp601 (dp602 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp603 (dp604 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p605 sg22 I00 sg37 g38 sg39 g605 sbag3 (g7 g8 NtRp606 (dp607 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp608 (dp609 g18 g3 (g19 g5 (ltRp610 (dp611 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp612 (dp613 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp614 (dp615 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp616 (dp617 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p618 sg22 I00 sg37 g38 sg39 g618 sbag3 (g7 g8 NtRp619 (dp620 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp621 (dp622 g18 g3 (g19 g5 (ltRp623 (dp624 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp625 (dp626 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp627 (dp628 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp629 (dp630 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p631 sg22 I00 sg37 g38 sg39 g631 sbag3 (g7 g8 NtRp632 (dp633 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp634 (dp635 g18 g3 (g19 g5 (ltRp636 (dp637 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp638 (dp639 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp640 (dp641 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp642 (dp643 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p644 sg22 I00 sg37 g38 sg39 g644 sbag3 (g7 g8 NtRp645 (dp646 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp647 (dp648 g18 g3 (g19 g5 (ltRp649 (dp650 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp651 (dp652 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp653 (dp654 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp655 (dp656 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p657 sg22 I00 sg37 g38 sg39 g657 sbag3 (g7 g8 NtRp658 (dp659 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp660 (dp661 g18 g3 (g19 g5 (ltRp662 (dp663 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp664 (dp665 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp666 (dp667 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp668 (dp669 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Matching ServerID' p670 sg22 I00 sg37 g38 sg39 g670 sbag3 (g7 g8 NtRp671 (dp672 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp673 (dp674 g18 g3 (g19 g5 (ltRp675 (dp676 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp677 (dp678 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp679 (dp680 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp681 (dp682 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received With Non-matching ServerID' p683 sg22 I00 sg37 g38 sg39 g683 sbag3 (g7 g8 NtRp684 (dp685 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp686 (dp687 g18 g3 (g19 g5 (ltRp688 (dp689 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp690 (dp691 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp692 (dp693 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp694 (dp695 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Encoded Responses Sent' p696 sg22 I00 sg37 g38 sg39 g696 sbag3 (g7 g8 NtRp697 (dp698 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp699 (dp700 g18 g3 (g19 g5 (ltRp701 (dp702 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp703 (dp704 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp705 (dp706 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp707 (dp708 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g247 sg22 I00 sg37 g38 sg39 g247 sbag3 (g7 g8 NtRp709 (dp710 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp711 (dp712 g18 g3 (g19 g5 (ltRp713 (dp714 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp715 (dp716 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp717 (dp718 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp719 (dp720 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunked Transfer-Encoded Requests Received' p721 sg22 I00 sg37 g38 sg39 g721 sbag3 (g7 g8 NtRp722 (dp723 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp724 (dp725 g18 g3 (g19 g5 (ltRp726 (dp727 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp728 (dp729 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp730 (dp731 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp732 (dp733 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g300 sg22 I00 sg37 g38 sg39 g300 sbag3 (g7 g8 NtRp734 (dp735 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp736 (dp737 g18 g3 (g19 g5 (ltRp738 (dp739 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp740 (dp741 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp742 (dp743 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp744 (dp745 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g339 sg22 I00 sg37 g38 sg39 g339 sbag3 (g7 g8 NtRp746 (dp747 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp748 (dp749 g18 g3 (g19 g5 (ltRp750 (dp751 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp752 (dp753 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp754 (dp755 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp756 (dp757 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g352 sg22 I00 sg37 g38 sg39 g352 sbag3 (g7 g8 NtRp758 (dp759 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp760 (dp761 g18 g3 (g19 g5 (ltRp762 (dp763 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp764 (dp765 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp766 (dp767 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp768 (dp769 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g365 sg22 I00 sg37 g38 sg39 g365 sbag3 (g7 g8 NtRp770 (dp771 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp772 (dp773 g18 g3 (g19 g5 (ltRp774 (dp775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp776 (dp777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp778 (dp779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp780 (dp781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g378 sg22 I00 sg37 g38 sg39 g378 sbag3 (g7 g8 NtRp782 (dp783 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp784 (dp785 g18 g3 (g19 g5 (ltRp786 (dp787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp788 (dp789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp790 (dp791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp792 (dp793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g391 sg22 I00 sg37 g38 sg39 g391 sbag3 (g7 g8 NtRp794 (dp795 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp796 (dp797 g18 g3 (g19 g5 (ltRp798 (dp799 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp800 (dp801 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp802 (dp803 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp804 (dp805 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Sent' p806 sg22 I00 sg37 g38 sg39 g806 sbag3 (g7 g8 NtRp807 (dp808 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp809 (dp810 g18 g3 (g19 g5 (ltRp811 (dp812 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp813 (dp814 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp815 (dp816 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp817 (dp818 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Sent' p819 sg22 I00 sg37 g38 sg39 g819 sbag3 (g7 g8 NtRp820 (dp821 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp822 (dp823 g18 g3 (g19 g5 (ltRp824 (dp825 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp826 (dp827 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp828 (dp829 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp830 (dp831 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Sent' p832 sg22 I00 sg37 g38 sg39 g832 sbag3 (g7 g8 NtRp833 (dp834 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp835 (dp836 g18 g3 (g19 g5 (ltRp837 (dp838 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp839 (dp840 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp841 (dp842 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp843 (dp844 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Sent' p845 sg22 I00 sg37 g38 sg39 g845 sbag3 (g7 g8 NtRp846 (dp847 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp848 (dp849 g18 g3 (g19 g5 (ltRp850 (dp851 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp852 (dp853 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp854 (dp855 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp856 (dp857 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Sent' p858 sg22 I00 sg37 g38 sg39 g858 sbag3 (g7 g8 NtRp859 (dp860 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp861 (dp862 g18 g3 (g19 g5 (ltRp863 (dp864 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp865 (dp866 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp867 (dp868 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp869 (dp870 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Sent' p871 sg22 I00 sg37 g38 sg39 g871 sbag3 (g7 g8 NtRp872 (dp873 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp874 (dp875 g18 g3 (g19 g5 (ltRp876 (dp877 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp878 (dp879 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp880 (dp881 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp882 (dp883 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Sent' p884 sg22 I00 sg37 g38 sg39 g884 sbag3 (g7 g8 NtRp885 (dp886 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp887 (dp888 g18 g3 (g19 g5 (ltRp889 (dp890 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp891 (dp892 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp893 (dp894 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp895 (dp896 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Sent' p897 sg22 I00 sg37 g38 sg39 g897 sbag3 (g7 g8 NtRp898 (dp899 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp900 (dp901 g18 g3 (g19 g5 (ltRp902 (dp903 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp904 (dp905 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp906 (dp907 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp908 (dp909 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Sent' p910 sg22 I00 sg37 g38 sg39 g910 sbag3 (g7 g8 NtRp911 (dp912 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp913 (dp914 g18 g3 (g19 g5 (ltRp915 (dp916 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp917 (dp918 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp919 (dp920 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp921 (dp922 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Sent' p923 sg22 I00 sg37 g38 sg39 g923 sbag3 (g7 g8 NtRp924 (dp925 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp926 (dp927 g18 g3 (g19 g5 (ltRp928 (dp929 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp930 (dp931 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp932 (dp933 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp934 (dp935 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 DATA Frames Received' p936 sg22 I00 sg37 g38 sg39 g936 sbag3 (g7 g8 NtRp937 (dp938 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp939 (dp940 g18 g3 (g19 g5 (ltRp941 (dp942 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp943 (dp944 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp945 (dp946 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp947 (dp948 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HEADER Frames Received' p949 sg22 I00 sg37 g38 sg39 g949 sbag3 (g7 g8 NtRp950 (dp951 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp952 (dp953 g18 g3 (g19 g5 (ltRp954 (dp955 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp956 (dp957 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp958 (dp959 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp960 (dp961 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PRIORITY Frames Received' p962 sg22 I00 sg37 g38 sg39 g962 sbag3 (g7 g8 NtRp963 (dp964 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp965 (dp966 g18 g3 (g19 g5 (ltRp967 (dp968 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp969 (dp970 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp971 (dp972 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp973 (dp974 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 RESETSTREAM Frames Received' p975 sg22 I00 sg37 g38 sg39 g975 sbag3 (g7 g8 NtRp976 (dp977 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp978 (dp979 g18 g3 (g19 g5 (ltRp980 (dp981 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp982 (dp983 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp984 (dp985 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp986 (dp987 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 SETTINGS Frames Received' p988 sg22 I00 sg37 g38 sg39 g988 sbag3 (g7 g8 NtRp989 (dp990 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp991 (dp992 g18 g3 (g19 g5 (ltRp993 (dp994 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp995 (dp996 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp997 (dp998 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp999 (dp1000 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PUSHPROMISE Frames Received' p1001 sg22 I00 sg37 g38 sg39 g1001 sbag3 (g7 g8 NtRp1002 (dp1003 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp1004 (dp1005 g18 g3 (g19 g5 (ltRp1006 (dp1007 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1008 (dp1009 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1010 (dp1011 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1012 (dp1013 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 PING Frames Received' p1014 sg22 I00 sg37 g38 sg39 g1014 sbag3 (g7 g8 NtRp1015 (dp1016 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp1017 (dp1018 g18 g3 (g19 g5 (ltRp1019 (dp1020 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1021 (dp1022 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1023 (dp1024 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1025 (dp1026 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 GOAWAY Frames Received' p1027 sg22 I00 sg37 g38 sg39 g1027 sbag3 (g7 g8 NtRp1028 (dp1029 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp1030 (dp1031 g18 g3 (g19 g5 (ltRp1032 (dp1033 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1034 (dp1035 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1036 (dp1037 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1038 (dp1039 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 WINDOWUPDATE Frames Received' p1040 sg22 I00 sg37 g38 sg39 g1040 sbag3 (g7 g8 NtRp1041 (dp1042 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp1043 (dp1044 g18 g3 (g19 g5 (ltRp1045 (dp1046 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1047 (dp1048 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1049 (dp1050 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1051 (dp1052 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 CONTINUATION Frames Received' p1053 sg22 I00 sg37 g38 sg39 g1053 sbag3 (g7 g8 NtRp1054 (dp1055 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp1056 (dp1057 g18 g3 (g19 g5 (ltRp1058 (dp1059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1060 (dp1061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1062 (dp1063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1064 (dp1065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Client' p1066 sg22 I00 sg37 g38 sg39 g1066 sbag3 (g7 g8 NtRp1067 (dp1068 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp1069 (dp1070 g18 g3 (g19 g5 (ltRp1071 (dp1072 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1073 (dp1074 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1075 (dp1076 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1077 (dp1078 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Initiated by Server' p1079 sg22 I00 sg37 g38 sg39 g1079 sbag3 (g7 g8 NtRp1080 (dp1081 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp1082 (dp1083 g18 g3 (g19 g5 (ltRp1084 (dp1085 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1086 (dp1087 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1088 (dp1089 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1090 (dp1091 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Client to Server' p1092 sg22 I00 sg37 g38 sg39 g1092 sbag3 (g7 g8 NtRp1093 (dp1094 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp1095 (dp1096 g18 g3 (g19 g5 (ltRp1097 (dp1098 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1099 (dp1100 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1101 (dp1102 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1103 (dp1104 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Succeeded Server to Client' p1105 sg22 I00 sg37 g38 sg39 g1105 sbag3 (g7 g8 NtRp1106 (dp1107 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp1108 (dp1109 g18 g3 (g19 g5 (ltRp1110 (dp1111 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1112 (dp1113 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1114 (dp1115 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1116 (dp1117 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Client to Server' p1118 sg22 I00 sg37 g38 sg39 g1118 sbag3 (g7 g8 NtRp1119 (dp1120 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp1121 (dp1122 g18 g3 (g19 g5 (ltRp1123 (dp1124 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1125 (dp1126 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1127 (dp1128 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1129 (dp1130 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Streams Failed Server to Client' p1131 sg22 I00 sg37 g38 sg39 g1131 sbag3 (g7 g8 NtRp1132 (dp1133 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp1134 (dp1135 g18 g3 (g19 g5 (ltRp1136 (dp1137 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1138 (dp1139 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1140 (dp1141 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1142 (dp1143 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Succeeded' p1144 sg22 I00 sg37 g38 sg39 g1144 sbag3 (g7 g8 NtRp1145 (dp1146 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp1147 (dp1148 g18 g3 (g19 g5 (ltRp1149 (dp1150 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1151 (dp1152 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1153 (dp1154 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1155 (dp1156 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connection Upgrade Failed' p1157 sg22 I00 sg37 g38 sg39 g1157 sbag3 (g7 g8 NtRp1158 (dp1159 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp1160 (dp1161 g18 g3 (g19 g5 (ltRp1162 (dp1163 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1164 (dp1165 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1166 (dp1167 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1168 (dp1169 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Protocol Error' p1170 sg22 I00 sg37 g38 sg39 g1170 sbag3 (g7 g8 NtRp1171 (dp1172 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp1173 (dp1174 g18 g3 (g19 g5 (ltRp1175 (dp1176 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1177 (dp1178 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1179 (dp1180 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1181 (dp1182 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Internal Error' p1183 sg22 I00 sg37 g38 sg39 g1183 sbag3 (g7 g8 NtRp1184 (dp1185 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp1186 (dp1187 g18 g3 (g19 g5 (ltRp1188 (dp1189 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1190 (dp1191 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1192 (dp1193 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1194 (dp1195 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Flow Control Error' p1196 sg22 I00 sg37 g38 sg39 g1196 sbag3 (g7 g8 NtRp1197 (dp1198 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp1199 (dp1200 g18 g3 (g19 g5 (ltRp1201 (dp1202 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1203 (dp1204 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1205 (dp1206 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1207 (dp1208 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Settings Timeout Error' p1209 sg22 I00 sg37 g38 sg39 g1209 sbag3 (g7 g8 NtRp1210 (dp1211 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp1212 (dp1213 g18 g3 (g19 g5 (ltRp1214 (dp1215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1216 (dp1217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1218 (dp1219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1220 (dp1221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Closed Error' p1222 sg22 I00 sg37 g38 sg39 g1222 sbag3 (g7 g8 NtRp1223 (dp1224 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp1225 (dp1226 g18 g3 (g19 g5 (ltRp1227 (dp1228 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1229 (dp1230 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1231 (dp1232 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1233 (dp1234 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Frame Size Error' p1235 sg22 I00 sg37 g38 sg39 g1235 sbag3 (g7 g8 NtRp1236 (dp1237 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp1238 (dp1239 g18 g3 (g19 g5 (ltRp1240 (dp1241 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1242 (dp1243 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1244 (dp1245 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1246 (dp1247 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Refused Stream Error' p1248 sg22 I00 sg37 g38 sg39 g1248 sbag3 (g7 g8 NtRp1249 (dp1250 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp1251 (dp1252 g18 g3 (g19 g5 (ltRp1253 (dp1254 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1255 (dp1256 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1257 (dp1258 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1259 (dp1260 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Stream Cancelled Error' p1261 sg22 I00 sg37 g38 sg39 g1261 sbag3 (g7 g8 NtRp1262 (dp1263 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp1264 (dp1265 g18 g3 (g19 g5 (ltRp1266 (dp1267 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1268 (dp1269 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1270 (dp1271 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1272 (dp1273 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Compression Error' p1274 sg22 I00 sg37 g38 sg39 g1274 sbag3 (g7 g8 NtRp1275 (dp1276 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp1277 (dp1278 g18 g3 (g19 g5 (ltRp1279 (dp1280 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1281 (dp1282 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1283 (dp1284 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1285 (dp1286 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Connect Error' p1287 sg22 I00 sg37 g38 sg39 g1287 sbag3 (g7 g8 NtRp1288 (dp1289 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp1290 (dp1291 g18 g3 (g19 g5 (ltRp1292 (dp1293 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1294 (dp1295 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1296 (dp1297 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1298 (dp1299 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Enhance Calm Error' p1300 sg22 I00 sg37 g38 sg39 g1300 sbag3 (g7 g8 NtRp1301 (dp1302 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp1303 (dp1304 g18 g3 (g19 g5 (ltRp1305 (dp1306 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1307 (dp1308 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1309 (dp1310 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1311 (dp1312 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 Inadequate Security Error' p1313 sg22 I00 sg37 g38 sg39 g1313 sbag3 (g7 g8 NtRp1314 (dp1315 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp1316 (dp1317 g18 g3 (g19 g5 (ltRp1318 (dp1319 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1320 (dp1321 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1322 (dp1323 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1324 (dp1325 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP2 HTTP1.1 Required Error' p1326 sg22 I00 sg37 g38 sg39 g1326 sbag3 (g7 g8 NtRp1327 (dp1328 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp1329 (dp1330 g18 g3 (g19 g5 (ltRp1331 (dp1332 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1333 (dp1334 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1335 (dp1336 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1337 (dp1338 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p1339 sg22 I00 sg37 g38 sg39 g1339 sbag3 (g7 g8 NtRp1340 (dp1341 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp1342 (dp1343 g18 g3 (g19 g5 (ltRp1344 (dp1345 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1346 (dp1347 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1348 (dp1349 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1350 (dp1351 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p1352 sg22 I00 sg37 g38 sg39 g1352 sbag3 (g7 g8 NtRp1353 (dp1354 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp1355 (dp1356 g18 g3 (g19 g5 (ltRp1357 (dp1358 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1359 (dp1360 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1361 (dp1362 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1363 (dp1364 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p1365 sg22 I00 sg37 g38 sg39 g1365 sbag3 (g7 g8 NtRp1366 (dp1367 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp1368 (dp1369 g18 g3 (g19 g5 (ltRp1370 (dp1371 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1372 (dp1373 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1374 (dp1375 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1376 (dp1377 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p1378 sg22 I00 sg37 g38 sg39 g1378 sbag3 (g7 g8 NtRp1379 (dp1380 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp1381 (dp1382 g18 g3 (g19 g5 (ltRp1383 (dp1384 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1385 (dp1386 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1387 (dp1388 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1389 (dp1390 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p1391 sg22 I00 sg37 g38 sg39 g1391 sbag3 (g7 g8 NtRp1392 (dp1393 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp1394 (dp1395 g18 g3 (g19 g5 (ltRp1396 (dp1397 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1398 (dp1399 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1400 (dp1401 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1402 (dp1403 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p1404 sg22 I00 sg37 g38 sg39 g1404 sbag3 (g7 g8 NtRp1405 (dp1406 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp1407 (dp1408 g18 g3 (g19 g5 (ltRp1409 (dp1410 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1411 (dp1412 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1413 (dp1414 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1415 (dp1416 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p1417 sg22 I00 sg37 g38 sg39 g1417 sbag3 (g7 g8 NtRp1418 (dp1419 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp1420 (dp1421 g18 g3 (g19 g5 (ltRp1422 (dp1423 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1424 (dp1425 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1426 (dp1427 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1428 (dp1429 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p1430 sg22 I00 sg37 g38 sg39 g1430 sbag3 (g7 g8 NtRp1431 (dp1432 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp1433 (dp1434 g18 g3 (g19 g5 (ltRp1435 (dp1436 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1437 (dp1438 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1439 (dp1440 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1441 (dp1442 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p1443 sg22 I00 sg37 g38 sg39 g1443 sbag3 (g7 g8 NtRp1444 (dp1445 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp1446 (dp1447 g18 g3 (g19 g5 (ltRp1448 (dp1449 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1450 (dp1451 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1452 (dp1453 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1454 (dp1455 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p1456 sg22 I00 sg37 g38 sg39 g1456 sbag3 (g7 g8 NtRp1457 (dp1458 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp1459 (dp1460 g18 g3 (g19 g5 (ltRp1461 (dp1462 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1463 (dp1464 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1465 (dp1466 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1467 (dp1468 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p1469 sg22 I00 sg37 g38 sg39 g1469 sbag3 (g7 g8 NtRp1470 (dp1471 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp1472 (dp1473 g18 g3 (g19 g5 (ltRp1474 (dp1475 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1476 (dp1477 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1478 (dp1479 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1480 (dp1481 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p1482 sg22 I00 sg37 g38 sg39 g1482 sbag3 (g7 g8 NtRp1483 (dp1484 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp1485 (dp1486 g18 g3 (g19 g5 (ltRp1487 (dp1488 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1489 (dp1490 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1491 (dp1492 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1493 (dp1494 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p1495 sg22 I00 sg37 g38 sg39 g1495 sbag3 (g7 g8 NtRp1496 (dp1497 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp1498 (dp1499 g18 g3 (g19 g5 (ltRp1500 (dp1501 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1502 (dp1503 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1504 (dp1505 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1506 (dp1507 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p1508 sg22 I00 sg37 g38 sg39 g1508 sbag3 (g7 g8 NtRp1509 (dp1510 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp1511 (dp1512 g18 g3 (g19 g5 (ltRp1513 (dp1514 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1515 (dp1516 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1517 (dp1518 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1519 (dp1520 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p1521 sg22 I00 sg37 g38 sg39 g1521 sbag3 (g7 g8 NtRp1522 (dp1523 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp1524 (dp1525 g18 g3 (g19 g5 (ltRp1526 (dp1527 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1528 (dp1529 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1530 (dp1531 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1532 (dp1533 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p1534 sg22 I00 sg37 g38 sg39 g1534 sbag3 (g7 g8 NtRp1535 (dp1536 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp1537 (dp1538 g18 g3 (g19 g5 (ltRp1539 (dp1540 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1541 (dp1542 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1543 (dp1544 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1545 (dp1546 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p1547 sg22 I00 sg37 g38 sg39 g1547 sbag3 (g7 g8 NtRp1548 (dp1549 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp1550 (dp1551 g18 g3 (g19 g5 (ltRp1552 (dp1553 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1554 (dp1555 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1556 (dp1557 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1558 (dp1559 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p1560 sg22 I00 sg37 g38 sg39 g1560 sbag3 (g7 g8 NtRp1561 (dp1562 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp1563 (dp1564 g18 g3 (g19 g5 (ltRp1565 (dp1566 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1567 (dp1568 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1569 (dp1570 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1571 (dp1572 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p1573 sg22 I00 sg37 g38 sg39 g1573 sbag3 (g7 g8 NtRp1574 (dp1575 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp1576 (dp1577 g18 g3 (g19 g5 (ltRp1578 (dp1579 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1580 (dp1581 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1582 (dp1583 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1584 (dp1585 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p1586 sg22 I00 sg37 g38 sg39 g1586 sbag3 (g7 g8 NtRp1587 (dp1588 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp1589 (dp1590 g18 g3 (g19 g5 (ltRp1591 (dp1592 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1593 (dp1594 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1595 (dp1596 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1597 (dp1598 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p1599 sg22 I00 sg37 g38 sg39 g1599 sbag3 (g7 g8 NtRp1600 (dp1601 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp1602 (dp1603 g18 g3 (g19 g5 (ltRp1604 (dp1605 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1606 (dp1607 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1608 (dp1609 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1610 (dp1611 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p1612 sg22 I00 sg37 g38 sg39 g1612 sbag3 (g7 g8 NtRp1613 (dp1614 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp1615 (dp1616 g18 g3 (g19 g5 (ltRp1617 (dp1618 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1619 (dp1620 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1621 (dp1622 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1623 (dp1624 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p1625 sg22 I00 sg37 g38 sg39 g1625 sbag3 (g7 g8 NtRp1626 (dp1627 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp1628 (dp1629 g18 g3 (g19 g5 (ltRp1630 (dp1631 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1632 (dp1633 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1634 (dp1635 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1636 (dp1637 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p1638 sg22 I00 sg37 g38 sg39 g1638 sbag3 (g7 g8 NtRp1639 (dp1640 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp1641 (dp1642 g18 g3 (g19 g5 (ltRp1643 (dp1644 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1645 (dp1646 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1647 (dp1648 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1649 (dp1650 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p1651 sg22 I00 sg37 g38 sg39 g1651 sbag3 (g7 g8 NtRp1652 (dp1653 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp1654 (dp1655 g18 g3 (g19 g5 (ltRp1656 (dp1657 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1658 (dp1659 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1660 (dp1661 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1662 (dp1663 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p1664 sg22 I00 sg37 g38 sg39 g1664 sbag3 (g7 g8 NtRp1665 (dp1666 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp1667 (dp1668 g18 g3 (g19 g5 (ltRp1669 (dp1670 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1671 (dp1672 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1673 (dp1674 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1675 (dp1676 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p1677 sg22 I00 sg37 g38 sg39 g1677 sbag3 (g7 g8 NtRp1678 (dp1679 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp1680 (dp1681 g18 g3 (g19 g5 (ltRp1682 (dp1683 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1684 (dp1685 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1686 (dp1687 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1688 (dp1689 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p1690 sg22 I00 sg37 g38 sg39 g1690 sbag3 (g7 g8 NtRp1691 (dp1692 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp1693 (dp1694 g18 g3 (g19 g5 (ltRp1695 (dp1696 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1697 (dp1698 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1699 (dp1700 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1701 (dp1702 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p1703 sg22 I00 sg37 g38 sg39 g1703 sbag3 (g7 g8 NtRp1704 (dp1705 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp1706 (dp1707 g18 g3 (g19 g5 (ltRp1708 (dp1709 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1710 (dp1711 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1712 (dp1713 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1714 (dp1715 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p1716 sg22 I00 sg37 g38 sg39 g1716 sbag3 (g7 g8 NtRp1717 (dp1718 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp1719 (dp1720 g18 g3 (g19 g5 (ltRp1721 (dp1722 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1723 (dp1724 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1725 (dp1726 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1727 (dp1728 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p1729 sg22 I00 sg37 g38 sg39 g1729 sbag3 (g7 g8 NtRp1730 (dp1731 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp1732 (dp1733 g18 g3 (g19 g5 (ltRp1734 (dp1735 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1736 (dp1737 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1738 (dp1739 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1740 (dp1741 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p1742 sg22 I00 sg37 g38 sg39 g1742 sbag3 (g7 g8 NtRp1743 (dp1744 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp1745 (dp1746 g18 g3 (g19 g5 (ltRp1747 (dp1748 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1749 (dp1750 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1751 (dp1752 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1753 (dp1754 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p1755 sg22 I00 sg37 g38 sg39 g1755 sbag3 (g7 g8 NtRp1756 (dp1757 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp1758 (dp1759 g18 g3 (g19 g5 (ltRp1760 (dp1761 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1762 (dp1763 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1764 (dp1765 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1766 (dp1767 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p1768 sg22 I00 sg37 g38 sg39 g1768 sbag3 (g7 g8 NtRp1769 (dp1770 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp1771 (dp1772 g18 g3 (g19 g5 (ltRp1773 (dp1774 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1775 (dp1776 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1777 (dp1778 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1779 (dp1780 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p1781 sg22 I00 sg37 g38 sg39 g1781 sbag3 (g7 g8 NtRp1782 (dp1783 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp1784 (dp1785 g18 g3 (g19 g5 (ltRp1786 (dp1787 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1788 (dp1789 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1790 (dp1791 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1792 (dp1793 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p1794 sg22 I00 sg37 g38 sg39 g1794 sbag3 (g7 g8 NtRp1795 (dp1796 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp1797 (dp1798 g18 g3 (g19 g5 (ltRp1799 (dp1800 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1801 (dp1802 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1803 (dp1804 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1805 (dp1806 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p1807 sg22 I00 sg37 g38 sg39 g1807 sbag3 (g7 g8 NtRp1808 (dp1809 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp1810 (dp1811 g18 g3 (g19 g5 (ltRp1812 (dp1813 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1814 (dp1815 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1816 (dp1817 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1818 (dp1819 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p1820 sg22 I00 sg37 g38 sg39 g1820 sbag3 (g7 g8 NtRp1821 (dp1822 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp1823 (dp1824 g18 g3 (g19 g5 (ltRp1825 (dp1826 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1827 (dp1828 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1829 (dp1830 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1831 (dp1832 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p1833 sg22 I00 sg37 g38 sg39 g1833 sbag3 (g7 g8 NtRp1834 (dp1835 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp1836 (dp1837 g18 g3 (g19 g5 (ltRp1838 (dp1839 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1840 (dp1841 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1842 (dp1843 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1844 (dp1845 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p1846 sg22 I00 sg37 g38 sg39 g1846 sbag3 (g7 g8 NtRp1847 (dp1848 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp1849 (dp1850 g18 g3 (g19 g5 (ltRp1851 (dp1852 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1853 (dp1854 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1855 (dp1856 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1857 (dp1858 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p1859 sg22 I00 sg37 g38 sg39 g1859 sbag3 (g7 g8 NtRp1860 (dp1861 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp1862 (dp1863 g18 g3 (g19 g5 (ltRp1864 (dp1865 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1866 (dp1867 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1868 (dp1869 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1870 (dp1871 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p1872 sg22 I00 sg37 g38 sg39 g1872 sbag3 (g7 g8 NtRp1873 (dp1874 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp1875 (dp1876 g18 g3 (g19 g5 (ltRp1877 (dp1878 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1879 (dp1880 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1881 (dp1882 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1883 (dp1884 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p1885 sg22 I00 sg37 g38 sg39 g1885 sbag3 (g7 g8 NtRp1886 (dp1887 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp1888 (dp1889 g18 g3 (g19 g5 (ltRp1890 (dp1891 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1892 (dp1893 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1894 (dp1895 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1896 (dp1897 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p1898 sg22 I00 sg37 g38 sg39 g1898 sbag3 (g7 g8 NtRp1899 (dp1900 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp1901 (dp1902 g18 g3 (g19 g5 (ltRp1903 (dp1904 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1905 (dp1906 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1907 (dp1908 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1909 (dp1910 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p1911 sg22 I00 sg37 g38 sg39 g1911 sbag3 (g7 g8 NtRp1912 (dp1913 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp1914 (dp1915 g18 g3 (g19 g5 (ltRp1916 (dp1917 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1918 (dp1919 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1920 (dp1921 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1922 (dp1923 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p1924 sg22 I00 sg37 g38 sg39 g1924 sbag3 (g7 g8 NtRp1925 (dp1926 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp1927 (dp1928 g18 g3 (g19 g5 (ltRp1929 (dp1930 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1931 (dp1932 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1933 (dp1934 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1935 (dp1936 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p1937 sg22 I00 sg37 g38 sg39 g1937 sbag3 (g7 g8 NtRp1938 (dp1939 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp1940 (dp1941 g18 g3 (g19 g5 (ltRp1942 (dp1943 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1944 (dp1945 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1946 (dp1947 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1948 (dp1949 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p1950 sg22 I00 sg37 g38 sg39 g1950 sbag3 (g7 g8 NtRp1951 (dp1952 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp1953 (dp1954 g18 g3 (g19 g5 (ltRp1955 (dp1956 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1957 (dp1958 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1959 (dp1960 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1961 (dp1962 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p1963 sg22 I00 sg37 g38 sg39 g1963 sbag3 (g7 g8 NtRp1964 (dp1965 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp1966 (dp1967 g18 g3 (g19 g5 (ltRp1968 (dp1969 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1970 (dp1971 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1972 (dp1973 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1974 (dp1975 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p1976 sg22 I00 sg37 g38 sg39 g1976 sbag3 (g7 g8 NtRp1977 (dp1978 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp1979 (dp1980 g18 g3 (g19 g5 (ltRp1981 (dp1982 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1983 (dp1984 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1985 (dp1986 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp1987 (dp1988 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p1989 sg22 I00 sg37 g38 sg39 g1989 sbag3 (g7 g8 NtRp1990 (dp1991 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp1992 (dp1993 g18 g3 (g19 g5 (ltRp1994 (dp1995 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp1996 (dp1997 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp1998 (dp1999 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2000 (dp2001 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p2002 sg22 I00 sg37 g38 sg39 g2002 sbag3 (g7 g8 NtRp2003 (dp2004 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp2005 (dp2006 g18 g3 (g19 g5 (ltRp2007 (dp2008 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2009 (dp2010 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2011 (dp2012 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2013 (dp2014 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p2015 sg22 I00 sg37 g38 sg39 g2015 sbag3 (g7 g8 NtRp2016 (dp2017 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp2018 (dp2019 g18 g3 (g19 g5 (ltRp2020 (dp2021 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2022 (dp2023 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2024 (dp2025 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2026 (dp2027 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p2028 sg22 I00 sg37 g38 sg39 g2028 sbag3 (g7 g8 NtRp2029 (dp2030 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp2031 (dp2032 g18 g3 (g19 g5 (ltRp2033 (dp2034 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2035 (dp2036 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2037 (dp2038 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2039 (dp2040 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p2041 sg22 I00 sg37 g38 sg39 g2041 sbag3 (g7 g8 NtRp2042 (dp2043 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp2044 (dp2045 g18 g3 (g19 g5 (ltRp2046 (dp2047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2048 (dp2049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2050 (dp2051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2052 (dp2053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p2054 sg22 I00 sg37 g38 sg39 g2054 sbag3 (g7 g8 NtRp2055 (dp2056 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp2057 (dp2058 g18 g3 (g19 g5 (ltRp2059 (dp2060 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2061 (dp2062 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2063 (dp2064 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2065 (dp2066 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p2067 sg22 I00 sg37 g38 sg39 g2067 sbag3 (g7 g8 NtRp2068 (dp2069 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp2070 (dp2071 g18 g3 (g19 g5 (ltRp2072 (dp2073 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2074 (dp2075 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2076 (dp2077 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2078 (dp2079 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p2080 sg22 I00 sg37 g38 sg39 g2080 sbag3 (g7 g8 NtRp2081 (dp2082 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp2083 (dp2084 g18 g3 (g19 g5 (ltRp2085 (dp2086 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2087 (dp2088 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2089 (dp2090 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2091 (dp2092 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p2093 sg22 I00 sg37 g38 sg39 g2093 sbag3 (g7 g8 NtRp2094 (dp2095 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp2096 (dp2097 g18 g3 (g19 g5 (ltRp2098 (dp2099 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2100 (dp2101 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2102 (dp2103 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2104 (dp2105 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p2106 sg22 I00 sg37 g38 sg39 g2106 sbag3 (g7 g8 NtRp2107 (dp2108 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp2109 (dp2110 g18 g3 (g19 g5 (ltRp2111 (dp2112 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2113 (dp2114 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2115 (dp2116 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2117 (dp2118 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p2119 sg22 I00 sg37 g38 sg39 g2119 sbag3 (g7 g8 NtRp2120 (dp2121 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp2122 (dp2123 g18 g3 (g19 g5 (ltRp2124 (dp2125 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2126 (dp2127 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2128 (dp2129 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2130 (dp2131 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p2132 sg22 I00 sg37 g38 sg39 g2132 sbag3 (g7 g8 NtRp2133 (dp2134 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp2135 (dp2136 g18 g3 (g19 g5 (ltRp2137 (dp2138 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2139 (dp2140 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2141 (dp2142 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2143 (dp2144 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p2145 sg22 I00 sg37 g38 sg39 g2145 sbag3 (g7 g8 NtRp2146 (dp2147 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp2148 (dp2149 g18 g3 (g19 g5 (ltRp2150 (dp2151 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2152 (dp2153 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2154 (dp2155 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2156 (dp2157 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p2158 sg22 I00 sg37 g38 sg39 g2158 sbag3 (g7 g8 NtRp2159 (dp2160 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp2161 (dp2162 g18 g3 (g19 g5 (ltRp2163 (dp2164 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2165 (dp2166 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2167 (dp2168 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2169 (dp2170 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p2171 sg22 I00 sg37 g38 sg39 g2171 sbag3 (g7 g8 NtRp2172 (dp2173 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp2174 (dp2175 g18 g3 (g19 g5 (ltRp2176 (dp2177 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2178 (dp2179 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2180 (dp2181 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2182 (dp2183 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p2184 sg22 I00 sg37 g38 sg39 g2184 sbag3 (g7 g8 NtRp2185 (dp2186 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp2187 (dp2188 g18 g3 (g19 g5 (ltRp2189 (dp2190 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2191 (dp2192 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2193 (dp2194 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2195 (dp2196 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p2197 sg22 I00 sg37 g38 sg39 g2197 sbag3 (g7 g8 NtRp2198 (dp2199 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp2200 (dp2201 g18 g3 (g19 g5 (ltRp2202 (dp2203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2204 (dp2205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2206 (dp2207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2208 (dp2209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p2210 sg22 I00 sg37 g38 sg39 g2210 sbag3 (g7 g8 NtRp2211 (dp2212 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp2213 (dp2214 g18 g3 (g19 g5 (ltRp2215 (dp2216 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2217 (dp2218 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2219 (dp2220 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2221 (dp2222 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p2223 sg22 I00 sg37 g38 sg39 g2223 sbag3 (g7 g8 NtRp2224 (dp2225 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp2226 (dp2227 g18 g3 (g19 g5 (ltRp2228 (dp2229 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2230 (dp2231 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2232 (dp2233 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2234 (dp2235 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p2236 sg22 I00 sg37 g38 sg39 g2236 sbag3 (g7 g8 NtRp2237 (dp2238 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp2239 (dp2240 g18 g3 (g19 g5 (ltRp2241 (dp2242 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2243 (dp2244 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2245 (dp2246 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2247 (dp2248 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p2249 sg22 I00 sg37 g38 sg39 g2249 sbag3 (g7 g8 NtRp2250 (dp2251 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp2252 (dp2253 g18 g3 (g19 g5 (ltRp2254 (dp2255 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2256 (dp2257 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2258 (dp2259 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2260 (dp2261 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p2262 sg22 I00 sg37 g38 sg39 g2262 sbag3 (g7 g8 NtRp2263 (dp2264 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp2265 (dp2266 g18 g3 (g19 g5 (ltRp2267 (dp2268 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2269 (dp2270 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2271 (dp2272 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2273 (dp2274 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p2275 sg22 I00 sg37 g38 sg39 g2275 sbag3 (g7 g8 NtRp2276 (dp2277 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp2278 (dp2279 g18 g3 (g19 g5 (ltRp2280 (dp2281 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2282 (dp2283 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2284 (dp2285 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2286 (dp2287 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p2288 sg22 I00 sg37 g38 sg39 g2288 sbag3 (g7 g8 NtRp2289 (dp2290 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp2291 (dp2292 g18 g3 (g19 g5 (ltRp2293 (dp2294 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2295 (dp2296 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2297 (dp2298 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2299 (dp2300 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p2301 sg22 I00 sg37 g38 sg39 g2301 sbag3 (g7 g8 NtRp2302 (dp2303 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp2304 (dp2305 g18 g3 (g19 g5 (ltRp2306 (dp2307 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2308 (dp2309 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2310 (dp2311 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2312 (dp2313 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p2314 sg22 I00 sg37 g38 sg39 g2314 sbag3 (g7 g8 NtRp2315 (dp2316 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp2317 (dp2318 g18 g3 (g19 g5 (ltRp2319 (dp2320 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2321 (dp2322 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2323 (dp2324 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2325 (dp2326 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p2327 sg22 I00 sg37 g38 sg39 g2327 sbag3 (g7 g8 NtRp2328 (dp2329 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp2330 (dp2331 g18 g3 (g19 g5 (ltRp2332 (dp2333 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2334 (dp2335 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2336 (dp2337 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2338 (dp2339 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p2340 sg22 I00 sg37 g38 sg39 g2340 sbag3 (g7 g8 NtRp2341 (dp2342 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp2343 (dp2344 g18 g3 (g19 g5 (ltRp2345 (dp2346 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2347 (dp2348 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2349 (dp2350 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2351 (dp2352 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p2353 sg22 I00 sg37 g38 sg39 g2353 sbag3 (g7 g8 NtRp2354 (dp2355 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp2356 (dp2357 g18 g3 (g19 g5 (ltRp2358 (dp2359 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2360 (dp2361 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2362 (dp2363 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2364 (dp2365 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p2366 sg22 I00 sg37 g38 sg39 g2366 sbag3 (g7 g8 NtRp2367 (dp2368 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp2369 (dp2370 g18 g3 (g19 g5 (ltRp2371 (dp2372 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2373 (dp2374 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2375 (dp2376 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2377 (dp2378 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p2379 sg22 I00 sg37 g38 sg39 g2379 sbag3 (g7 g8 NtRp2380 (dp2381 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp2382 (dp2383 g18 g3 (g19 g5 (ltRp2384 (dp2385 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2386 (dp2387 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2388 (dp2389 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2390 (dp2391 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p2392 sg22 I00 sg37 g38 sg39 g2392 sbag3 (g7 g8 NtRp2393 (dp2394 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp2395 (dp2396 g18 g3 (g19 g5 (ltRp2397 (dp2398 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2399 (dp2400 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2401 (dp2402 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2403 (dp2404 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p2405 sg22 I00 sg37 g38 sg39 g2405 sbag3 (g7 g8 NtRp2406 (dp2407 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp2408 (dp2409 g18 g3 (g19 g5 (ltRp2410 (dp2411 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2412 (dp2413 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2414 (dp2415 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2416 (dp2417 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p2418 sg22 I00 sg37 g38 sg39 g2418 sbag3 (g7 g8 NtRp2419 (dp2420 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp2421 (dp2422 g18 g3 (g19 g5 (ltRp2423 (dp2424 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2425 (dp2426 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2427 (dp2428 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2429 (dp2430 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p2431 sg22 I00 sg37 g38 sg39 g2431 sbag3 (g7 g8 NtRp2432 (dp2433 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp2434 (dp2435 g18 g3 (g19 g5 (ltRp2436 (dp2437 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2438 (dp2439 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2440 (dp2441 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2442 (dp2443 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p2444 sg22 I00 sg37 g38 sg39 g2444 sbag3 (g7 g8 NtRp2445 (dp2446 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp2447 (dp2448 g18 g3 (g19 g5 (ltRp2449 (dp2450 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2451 (dp2452 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2453 (dp2454 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2455 (dp2456 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p2457 sg22 I00 sg37 g38 sg39 g2457 sbag3 (g7 g8 NtRp2458 (dp2459 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp2460 (dp2461 g18 g3 (g19 g5 (ltRp2462 (dp2463 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2464 (dp2465 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2466 (dp2467 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2468 (dp2469 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p2470 sg22 I00 sg37 g38 sg39 g2470 sbag3 (g7 g8 NtRp2471 (dp2472 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp2473 (dp2474 g18 g3 (g19 g5 (ltRp2475 (dp2476 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2477 (dp2478 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2479 (dp2480 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2481 (dp2482 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p2483 sg22 I00 sg37 g38 sg39 g2483 sbag3 (g7 g8 NtRp2484 (dp2485 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp2486 (dp2487 g18 g3 (g19 g5 (ltRp2488 (dp2489 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2490 (dp2491 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2492 (dp2493 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2494 (dp2495 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p2496 sg22 I00 sg37 g38 sg39 g2496 sbag3 (g7 g8 NtRp2497 (dp2498 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp2499 (dp2500 g18 g3 (g19 g5 (ltRp2501 (dp2502 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2503 (dp2504 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2505 (dp2506 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2507 (dp2508 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p2509 sg22 I00 sg37 g38 sg39 g2509 sbag3 (g7 g8 NtRp2510 (dp2511 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp2512 (dp2513 g18 g3 (g19 g5 (ltRp2514 (dp2515 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2516 (dp2517 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2518 (dp2519 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2520 (dp2521 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p2522 sg22 I00 sg37 g38 sg39 g2522 sbag3 (g7 g8 NtRp2523 (dp2524 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp2525 (dp2526 g18 g3 (g19 g5 (ltRp2527 (dp2528 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2529 (dp2530 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2531 (dp2532 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2533 (dp2534 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p2535 sg22 I00 sg37 g38 sg39 g2535 sbag3 (g7 g8 NtRp2536 (dp2537 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp2538 (dp2539 g18 g3 (g19 g5 (ltRp2540 (dp2541 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2542 (dp2543 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2544 (dp2545 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2546 (dp2547 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p2548 sg22 I00 sg37 g38 sg39 g2548 sbag3 (g7 g8 NtRp2549 (dp2550 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp2551 (dp2552 g18 g3 (g19 g5 (ltRp2553 (dp2554 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2555 (dp2556 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2557 (dp2558 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2559 (dp2560 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p2561 sg22 I00 sg37 g38 sg39 g2561 sbag3 (g7 g8 NtRp2562 (dp2563 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp2564 (dp2565 g18 g3 (g19 g5 (ltRp2566 (dp2567 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2568 (dp2569 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2570 (dp2571 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2572 (dp2573 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p2574 sg22 I00 sg37 g38 sg39 g2574 sbag3 (g7 g8 NtRp2575 (dp2576 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp2577 (dp2578 g18 g3 (g19 g5 (ltRp2579 (dp2580 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2581 (dp2582 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2583 (dp2584 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2585 (dp2586 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p2587 sg22 I00 sg37 g38 sg39 g2587 sbag3 (g7 g8 NtRp2588 (dp2589 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp2590 (dp2591 g18 g3 (g19 g5 (ltRp2592 (dp2593 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2594 (dp2595 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2596 (dp2597 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2598 (dp2599 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p2600 sg22 I00 sg37 g38 sg39 g2600 sbag3 (g7 g8 NtRp2601 (dp2602 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp2603 (dp2604 g18 g3 (g19 g5 (ltRp2605 (dp2606 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2607 (dp2608 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2609 (dp2610 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2611 (dp2612 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p2613 sg22 I00 sg37 g38 sg39 g2613 sbag3 (g7 g8 NtRp2614 (dp2615 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp2616 (dp2617 g18 g3 (g19 g5 (ltRp2618 (dp2619 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2620 (dp2621 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2622 (dp2623 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2624 (dp2625 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p2626 sg22 I00 sg37 g38 sg39 g2626 sbag3 (g7 g8 NtRp2627 (dp2628 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp2629 (dp2630 g18 g3 (g19 g5 (ltRp2631 (dp2632 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2633 (dp2634 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2635 (dp2636 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2637 (dp2638 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p2639 sg22 I00 sg37 g38 sg39 g2639 sbag3 (g7 g8 NtRp2640 (dp2641 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp2642 (dp2643 g18 g3 (g19 g5 (ltRp2644 (dp2645 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2646 (dp2647 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2648 (dp2649 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2650 (dp2651 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p2652 sg22 I00 sg37 g38 sg39 g2652 sbag3 (g7 g8 NtRp2653 (dp2654 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp2655 (dp2656 g18 g3 (g19 g5 (ltRp2657 (dp2658 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2659 (dp2660 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2661 (dp2662 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2663 (dp2664 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p2665 sg22 I00 sg37 g38 sg39 g2665 sbag3 (g7 g8 NtRp2666 (dp2667 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp2668 (dp2669 g18 g3 (g19 g5 (ltRp2670 (dp2671 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2672 (dp2673 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2674 (dp2675 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2676 (dp2677 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p2678 sg22 I00 sg37 g38 sg39 g2678 sbag3 (g7 g8 NtRp2679 (dp2680 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp2681 (dp2682 g18 g3 (g19 g5 (ltRp2683 (dp2684 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2685 (dp2686 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2687 (dp2688 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2689 (dp2690 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p2691 sg22 I00 sg37 g38 sg39 g2691 sbag3 (g7 g8 NtRp2692 (dp2693 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp2694 (dp2695 g18 g3 (g19 g5 (ltRp2696 (dp2697 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2698 (dp2699 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2700 (dp2701 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2702 (dp2703 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p2704 sg22 I00 sg37 g38 sg39 g2704 sbag3 (g7 g8 NtRp2705 (dp2706 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp2707 (dp2708 g18 g3 (g19 g5 (ltRp2709 (dp2710 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2711 (dp2712 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2713 (dp2714 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2715 (dp2716 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p2717 sg22 I00 sg37 g38 sg39 g2717 sbag3 (g7 g8 NtRp2718 (dp2719 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp2720 (dp2721 g18 g3 (g19 g5 (ltRp2722 (dp2723 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2724 (dp2725 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2726 (dp2727 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2728 (dp2729 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p2730 sg22 I00 sg37 g38 sg39 g2730 sbag3 (g7 g8 NtRp2731 (dp2732 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp2733 (dp2734 g18 g3 (g19 g5 (ltRp2735 (dp2736 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2737 (dp2738 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2739 (dp2740 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2741 (dp2742 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p2743 sg22 I00 sg37 g38 sg39 g2743 sbag3 (g7 g8 NtRp2744 (dp2745 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp2746 (dp2747 g18 g3 (g19 g5 (ltRp2748 (dp2749 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2750 (dp2751 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2752 (dp2753 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2754 (dp2755 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p2756 sg22 I00 sg37 g38 sg39 g2756 sbag3 (g7 g8 NtRp2757 (dp2758 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp2759 (dp2760 g18 g3 (g19 g5 (ltRp2761 (dp2762 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2763 (dp2764 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2765 (dp2766 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2767 (dp2768 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p2769 sg22 I00 sg37 g38 sg39 g2769 sbag3 (g7 g8 NtRp2770 (dp2771 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp2772 (dp2773 g18 g3 (g19 g5 (ltRp2774 (dp2775 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2776 (dp2777 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2778 (dp2779 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2780 (dp2781 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p2782 sg22 I00 sg37 g38 sg39 g2782 sbag3 (g7 g8 NtRp2783 (dp2784 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp2785 (dp2786 g18 g3 (g19 g5 (ltRp2787 (dp2788 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2789 (dp2790 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2791 (dp2792 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2793 (dp2794 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p2795 sg22 I00 sg37 g38 sg39 g2795 sbatRp2796 (dp2797 g12 I185 sg22 I00 sg11 NsbsS'HTTP Client Per URL' p2798 g3 (g4 g5 (lp2799 g3 (g7 g8 NtRp2800 (dp2801 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp2802 (dp2803 g18 g3 (g19 g5 (ltRp2804 (dp2805 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2806 (dp2807 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2808 (dp2809 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2810 (dp2811 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Sent' p2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp2813 (dp2814 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp2815 (dp2816 g18 g3 (g19 g5 (ltRp2817 (dp2818 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2819 (dp2820 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2821 (dp2822 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2823 (dp2824 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful' p2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp2826 (dp2827 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp2828 (dp2829 g18 g3 (g19 g5 (ltRp2830 (dp2831 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2832 (dp2833 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2834 (dp2835 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2836 (dp2837 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (Provisional)' p2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp2839 (dp2840 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp2841 (dp2842 g18 g3 (g19 g5 (ltRp2843 (dp2844 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2845 (dp2846 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2847 (dp2848 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2849 (dp2850 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed' p2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp2852 (dp2853 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp2854 (dp2855 g18 g3 (g19 g5 (ltRp2856 (dp2857 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2858 (dp2859 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2860 (dp2861 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2862 (dp2863 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Write)' p2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp2865 (dp2866 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp2867 (dp2868 g18 g3 (g19 g5 (ltRp2869 (dp2870 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2871 (dp2872 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2873 (dp2874 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2875 (dp2876 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Read)' p2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp2878 (dp2879 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp2880 (dp2881 g18 g3 (g19 g5 (ltRp2882 (dp2883 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2884 (dp2885 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2886 (dp2887 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2888 (dp2889 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Bad Header)' p2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp2891 (dp2892 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp2893 (dp2894 g18 g3 (g19 g5 (ltRp2895 (dp2896 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2897 (dp2898 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2899 (dp2900 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2901 (dp2902 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx)' p2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp2904 (dp2905 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp2906 (dp2907 g18 g3 (g19 g5 (ltRp2908 (dp2909 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2910 (dp2911 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2912 (dp2913 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2914 (dp2915 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (400)' p2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp2917 (dp2918 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp2919 (dp2920 g18 g3 (g19 g5 (ltRp2921 (dp2922 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2923 (dp2924 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2925 (dp2926 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2927 (dp2928 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (401)' p2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp2930 (dp2931 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp2932 (dp2933 g18 g3 (g19 g5 (ltRp2934 (dp2935 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2936 (dp2937 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2938 (dp2939 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2940 (dp2941 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (403)' p2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp2943 (dp2944 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp2945 (dp2946 g18 g3 (g19 g5 (ltRp2947 (dp2948 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2949 (dp2950 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2951 (dp2952 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2953 (dp2954 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (404)' p2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp2956 (dp2957 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp2958 (dp2959 g18 g3 (g19 g5 (ltRp2960 (dp2961 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2962 (dp2963 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2964 (dp2965 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2966 (dp2967 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (407)' p2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp2969 (dp2970 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp2971 (dp2972 g18 g3 (g19 g5 (ltRp2973 (dp2974 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2975 (dp2976 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2977 (dp2978 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2979 (dp2980 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (408)' p2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp2982 (dp2983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp2984 (dp2985 g18 g3 (g19 g5 (ltRp2986 (dp2987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp2988 (dp2989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp2990 (dp2991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp2992 (dp2993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (4xx other)' p2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp2995 (dp2996 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp2997 (dp2998 g18 g3 (g19 g5 (ltRp2999 (dp3000 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3001 (dp3002 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3003 (dp3004 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3005 (dp3006 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx)' p3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp3008 (dp3009 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp3010 (dp3011 g18 g3 (g19 g5 (ltRp3012 (dp3013 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3014 (dp3015 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3016 (dp3017 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3018 (dp3019 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (505)' p3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp3021 (dp3022 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp3023 (dp3024 g18 g3 (g19 g5 (ltRp3025 (dp3026 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3027 (dp3028 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3029 (dp3030 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3031 (dp3032 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (5xx other)' p3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp3034 (dp3035 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp3036 (dp3037 g18 g3 (g19 g5 (ltRp3038 (dp3039 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3040 (dp3041 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3042 (dp3043 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3044 (dp3045 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (other)' p3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp3047 (dp3048 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp3049 (dp3050 g18 g3 (g19 g5 (ltRp3051 (dp3052 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3053 (dp3054 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3055 (dp3056 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3057 (dp3058 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Timeout)' p3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp3060 (dp3061 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp3062 (dp3063 g18 g3 (g19 g5 (ltRp3064 (dp3065 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3066 (dp3067 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3068 (dp3069 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3070 (dp3071 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Failed (Aborted)' p3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp3073 (dp3074 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp3075 (dp3076 g18 g3 (g19 g5 (ltRp3077 (dp3078 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3079 (dp3080 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3081 (dp3082 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3083 (dp3084 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted Before Request' p3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp3086 (dp3087 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp3088 (dp3089 g18 g3 (g19 g5 (ltRp3090 (dp3091 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3092 (dp3093 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3094 (dp3095 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3096 (dp3097 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Aborted After Request' p3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp3099 (dp3100 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp3101 (dp3102 g18 g3 (g19 g5 (ltRp3103 (dp3104 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3105 (dp3106 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3107 (dp3108 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3109 (dp3110 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received With Match' p3111 sg22 I00 sg37 g38 sg39 g3111 sbag3 (g7 g8 NtRp3112 (dp3113 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp3114 (dp3115 g18 g3 (g19 g5 (ltRp3116 (dp3117 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3118 (dp3119 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3120 (dp3121 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3122 (dp3123 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Responses Received Without Match' p3124 sg22 I00 sg37 g38 sg39 g3124 sbag3 (g7 g8 NtRp3125 (dp3126 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp3127 (dp3128 g18 g3 (g19 g5 (ltRp3129 (dp3130 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3131 (dp3132 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3133 (dp3134 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3135 (dp3136 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Intermediate Responses Received (1xx)' p3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3138 (dp3139 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp3140 (dp3141 g18 g3 (g19 g5 (ltRp3142 (dp3143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3144 (dp3145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3146 (dp3147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3148 (dp3149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (2xx)' p3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3151 (dp3152 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp3153 (dp3154 g18 g3 (g19 g5 (ltRp3155 (dp3156 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3157 (dp3158 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3159 (dp3160 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3161 (dp3162 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (3xx)' p3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3164 (dp3165 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp3166 (dp3167 g18 g3 (g19 g5 (ltRp3168 (dp3169 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3170 (dp3171 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3172 (dp3173 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3174 (dp3175 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (301)' p3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3177 (dp3178 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp3179 (dp3180 g18 g3 (g19 g5 (ltRp3181 (dp3182 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3183 (dp3184 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3185 (dp3186 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3187 (dp3188 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (302)' p3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp3190 (dp3191 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp3192 (dp3193 g18 g3 (g19 g5 (ltRp3194 (dp3195 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3196 (dp3197 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3198 (dp3199 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3200 (dp3201 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (303)' p3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp3203 (dp3204 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp3205 (dp3206 g18 g3 (g19 g5 (ltRp3207 (dp3208 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3209 (dp3210 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3211 (dp3212 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3213 (dp3214 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Requests Successful (307)' p3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp3216 (dp3217 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp3218 (dp3219 g18 g3 (g19 g5 (ltRp3220 (dp3221 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3222 (dp3223 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3224 (dp3225 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3226 (dp3227 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Requests Sent' p3228 sg22 I00 sg37 g38 sg39 g3228 sbag3 (g7 g8 NtRp3229 (dp3230 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp3231 (dp3232 g18 g3 (g19 g5 (ltRp3233 (dp3234 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3235 (dp3236 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3237 (dp3238 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3239 (dp3240 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Headers Received' p3241 sg22 I00 sg37 g38 sg39 g3241 sbag3 (g7 g8 NtRp3242 (dp3243 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp3244 (dp3245 g18 g3 (g19 g5 (ltRp3246 (dp3247 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3248 (dp3249 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3250 (dp3251 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3252 (dp3253 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Received' p3254 sg22 I00 sg37 g38 sg39 g3254 sbag3 (g7 g8 NtRp3255 (dp3256 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp3257 (dp3258 g18 g3 (g19 g5 (ltRp3259 (dp3260 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3261 (dp3262 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3263 (dp3264 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3265 (dp3266 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Successful' p3267 sg22 I00 sg37 g38 sg39 g3267 sbag3 (g7 g8 NtRp3268 (dp3269 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp3270 (dp3271 g18 g3 (g19 g5 (ltRp3272 (dp3273 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3274 (dp3275 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3276 (dp3277 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3278 (dp3279 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Responses Failed' p3280 sg22 I00 sg37 g38 sg39 g3280 sbag3 (g7 g8 NtRp3281 (dp3282 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp3283 (dp3284 g18 g3 (g19 g5 (ltRp3285 (dp3286 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3287 (dp3288 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3289 (dp3290 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3291 (dp3292 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Received' p3293 sg22 I00 sg37 g38 sg39 g3293 sbag3 (g7 g8 NtRp3294 (dp3295 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp3296 (dp3297 g18 g3 (g19 g5 (ltRp3298 (dp3299 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3300 (dp3301 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3302 (dp3303 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3304 (dp3305 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size' p3306 sg22 I00 sg37 g261 sg39 g3306 sbag3 (g7 g8 NtRp3307 (dp3308 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp3309 (dp3310 g18 g3 (g19 g5 (ltRp3311 (dp3312 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3313 (dp3314 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3315 (dp3316 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3317 (dp3318 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Response' p3319 sg22 I00 sg37 g261 sg39 g3319 sbag3 (g7 g8 NtRp3320 (dp3321 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp3322 (dp3323 g18 g3 (g19 g5 (ltRp3324 (dp3325 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3326 (dp3327 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3328 (dp3329 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3330 (dp3331 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Chunk Encoded Requests Sent' p3332 sg22 I00 sg37 g38 sg39 g3332 sbag3 (g7 g8 NtRp3333 (dp3334 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp3335 (dp3336 g18 g3 (g19 g5 (ltRp3337 (dp3338 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3339 (dp3340 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3341 (dp3342 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3343 (dp3344 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Total Chunks Sent' p3345 sg22 I00 sg37 g38 sg39 g3345 sbag3 (g7 g8 NtRp3346 (dp3347 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp3348 (dp3349 g18 g3 (g19 g5 (ltRp3350 (dp3351 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3352 (dp3353 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3354 (dp3355 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3356 (dp3357 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunk Size in Request' p3358 sg22 I00 sg37 g261 sg39 g3358 sbag3 (g7 g8 NtRp3359 (dp3360 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp3361 (dp3362 g18 g3 (g19 g5 (ltRp3363 (dp3364 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3365 (dp3366 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3367 (dp3368 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3369 (dp3370 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Average Chunks per Request' p3371 sg22 I00 sg37 g261 sg39 g3371 sbag3 (g7 g8 NtRp3372 (dp3373 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp3374 (dp3375 g18 g3 (g19 g5 (ltRp3376 (dp3377 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3378 (dp3379 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3380 (dp3381 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3382 (dp3383 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name1-Value1' p3384 sg22 I00 sg37 S'kString' p3385 sg39 g3384 sbag3 (g7 g8 NtRp3386 (dp3387 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp3388 (dp3389 g18 g3 (g19 g5 (ltRp3390 (dp3391 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3392 (dp3393 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3394 (dp3395 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3396 (dp3397 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter1' p3398 sg22 I00 sg37 g38 sg39 g3398 sbag3 (g7 g8 NtRp3399 (dp3400 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp3401 (dp3402 g18 g3 (g19 g5 (ltRp3403 (dp3404 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3405 (dp3406 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3407 (dp3408 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3409 (dp3410 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name2-Value2' p3411 sg22 I00 sg37 g3385 sg39 g3411 sbag3 (g7 g8 NtRp3412 (dp3413 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp3414 (dp3415 g18 g3 (g19 g5 (ltRp3416 (dp3417 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3418 (dp3419 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3420 (dp3421 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3422 (dp3423 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter2' p3424 sg22 I00 sg37 g38 sg39 g3424 sbag3 (g7 g8 NtRp3425 (dp3426 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp3427 (dp3428 g18 g3 (g19 g5 (ltRp3429 (dp3430 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3431 (dp3432 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3433 (dp3434 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3435 (dp3436 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name3-Value3' p3437 sg22 I00 sg37 g3385 sg39 g3437 sbag3 (g7 g8 NtRp3438 (dp3439 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp3440 (dp3441 g18 g3 (g19 g5 (ltRp3442 (dp3443 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3444 (dp3445 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3446 (dp3447 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3448 (dp3449 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter3' p3450 sg22 I00 sg37 g38 sg39 g3450 sbag3 (g7 g8 NtRp3451 (dp3452 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp3453 (dp3454 g18 g3 (g19 g5 (ltRp3455 (dp3456 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3457 (dp3458 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3459 (dp3460 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3461 (dp3462 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name4-Value4' p3463 sg22 I00 sg37 g3385 sg39 g3463 sbag3 (g7 g8 NtRp3464 (dp3465 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp3466 (dp3467 g18 g3 (g19 g5 (ltRp3468 (dp3469 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3470 (dp3471 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3472 (dp3473 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3474 (dp3475 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter4' p3476 sg22 I00 sg37 g38 sg39 g3476 sbag3 (g7 g8 NtRp3477 (dp3478 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp3479 (dp3480 g18 g3 (g19 g5 (ltRp3481 (dp3482 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3483 (dp3484 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3485 (dp3486 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3487 (dp3488 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name5-Value5' p3489 sg22 I00 sg37 g3385 sg39 g3489 sbag3 (g7 g8 NtRp3490 (dp3491 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp3492 (dp3493 g18 g3 (g19 g5 (ltRp3494 (dp3495 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3496 (dp3497 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3498 (dp3499 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3500 (dp3501 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter5' p3502 sg22 I00 sg37 g38 sg39 g3502 sbag3 (g7 g8 NtRp3503 (dp3504 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp3505 (dp3506 g18 g3 (g19 g5 (ltRp3507 (dp3508 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3509 (dp3510 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3511 (dp3512 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3513 (dp3514 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name6-Value6' p3515 sg22 I00 sg37 g3385 sg39 g3515 sbag3 (g7 g8 NtRp3516 (dp3517 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp3518 (dp3519 g18 g3 (g19 g5 (ltRp3520 (dp3521 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3522 (dp3523 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3524 (dp3525 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3526 (dp3527 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter6' p3528 sg22 I00 sg37 g38 sg39 g3528 sbag3 (g7 g8 NtRp3529 (dp3530 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp3531 (dp3532 g18 g3 (g19 g5 (ltRp3533 (dp3534 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3535 (dp3536 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3537 (dp3538 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3539 (dp3540 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name7-Value7' p3541 sg22 I00 sg37 g3385 sg39 g3541 sbag3 (g7 g8 NtRp3542 (dp3543 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp3544 (dp3545 g18 g3 (g19 g5 (ltRp3546 (dp3547 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3548 (dp3549 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3550 (dp3551 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3552 (dp3553 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter7' p3554 sg22 I00 sg37 g38 sg39 g3554 sbag3 (g7 g8 NtRp3555 (dp3556 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp3557 (dp3558 g18 g3 (g19 g5 (ltRp3559 (dp3560 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3561 (dp3562 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3563 (dp3564 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3565 (dp3566 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name8-Value8' p3567 sg22 I00 sg37 g3385 sg39 g3567 sbag3 (g7 g8 NtRp3568 (dp3569 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp3570 (dp3571 g18 g3 (g19 g5 (ltRp3572 (dp3573 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3574 (dp3575 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3576 (dp3577 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3578 (dp3579 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter8' p3580 sg22 I00 sg37 g38 sg39 g3580 sbag3 (g7 g8 NtRp3581 (dp3582 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp3583 (dp3584 g18 g3 (g19 g5 (ltRp3585 (dp3586 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3587 (dp3588 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3589 (dp3590 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3591 (dp3592 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name9-Value9' p3593 sg22 I00 sg37 g3385 sg39 g3593 sbag3 (g7 g8 NtRp3594 (dp3595 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp3596 (dp3597 g18 g3 (g19 g5 (ltRp3598 (dp3599 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3600 (dp3601 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3602 (dp3603 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3604 (dp3605 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter9' p3606 sg22 I00 sg37 g38 sg39 g3606 sbag3 (g7 g8 NtRp3607 (dp3608 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp3609 (dp3610 g18 g3 (g19 g5 (ltRp3611 (dp3612 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3613 (dp3614 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3615 (dp3616 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3617 (dp3618 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Name10-Value10' p3619 sg22 I00 sg37 g3385 sg39 g3619 sbag3 (g7 g8 NtRp3620 (dp3621 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp3622 (dp3623 g18 g3 (g19 g5 (ltRp3624 (dp3625 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3626 (dp3627 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3628 (dp3629 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3630 (dp3631 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Counter10' p3632 sg22 I00 sg37 g38 sg39 g3632 sbag3 (g7 g8 NtRp3633 (dp3634 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp3635 (dp3636 g18 g3 (g19 g5 (ltRp3637 (dp3638 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3639 (dp3640 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3641 (dp3642 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3643 (dp3644 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Received' p3645 sg22 I00 sg37 g38 sg39 g3645 sbag3 (g7 g8 NtRp3646 (dp3647 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp3648 (dp3649 g18 g3 (g19 g5 (ltRp3650 (dp3651 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3652 (dp3653 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3654 (dp3655 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3656 (dp3657 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Successful' p3658 sg22 I00 sg37 g38 sg39 g3658 sbag3 (g7 g8 NtRp3659 (dp3660 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp3661 (dp3662 g18 g3 (g19 g5 (ltRp3663 (dp3664 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3665 (dp3666 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3667 (dp3668 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3669 (dp3670 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Gzip-Encoded Responses Failed' p3671 sg22 I00 sg37 g38 sg39 g3671 sbag3 (g7 g8 NtRp3672 (dp3673 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp3674 (dp3675 g18 g3 (g19 g5 (ltRp3676 (dp3677 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3678 (dp3679 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3680 (dp3681 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3682 (dp3683 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Received' p3684 sg22 I00 sg37 g38 sg39 g3684 sbag3 (g7 g8 NtRp3685 (dp3686 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp3687 (dp3688 g18 g3 (g19 g5 (ltRp3689 (dp3690 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3691 (dp3692 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3693 (dp3694 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3695 (dp3696 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Successful' p3697 sg22 I00 sg37 g38 sg39 g3697 sbag3 (g7 g8 NtRp3698 (dp3699 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp3700 (dp3701 g18 g3 (g19 g5 (ltRp3702 (dp3703 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3704 (dp3705 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3706 (dp3707 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3708 (dp3709 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Deflate-Encoded Responses Failed' p3710 sg22 I00 sg37 g38 sg39 g3710 sbag3 (g7 g8 NtRp3711 (dp3712 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp3713 (dp3714 g18 g3 (g19 g5 (ltRp3715 (dp3716 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3717 (dp3718 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3719 (dp3720 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3721 (dp3722 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Received' p3723 sg22 I00 sg37 g38 sg39 g3723 sbag3 (g7 g8 NtRp3724 (dp3725 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp3726 (dp3727 g18 g3 (g19 g5 (ltRp3728 (dp3729 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3730 (dp3731 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3732 (dp3733 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3734 (dp3735 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Successful' p3736 sg22 I00 sg37 g38 sg39 g3736 sbag3 (g7 g8 NtRp3737 (dp3738 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp3739 (dp3740 g18 g3 (g19 g5 (ltRp3741 (dp3742 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3743 (dp3744 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3745 (dp3746 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3747 (dp3748 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content-MD5 Responses Failed' p3749 sg22 I00 sg37 g38 sg39 g3749 sbag3 (g7 g8 NtRp3750 (dp3751 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp3752 (dp3753 g18 g3 (g19 g5 (ltRp3754 (dp3755 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3756 (dp3757 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3758 (dp3759 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3760 (dp3761 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Received' p3762 sg22 I00 sg37 g38 sg39 g3762 sbag3 (g7 g8 NtRp3763 (dp3764 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp3765 (dp3766 g18 g3 (g19 g5 (ltRp3767 (dp3768 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3769 (dp3770 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3771 (dp3772 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3773 (dp3774 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Successful' p3775 sg22 I00 sg37 g38 sg39 g3775 sbag3 (g7 g8 NtRp3776 (dp3777 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp3778 (dp3779 g18 g3 (g19 g5 (ltRp3780 (dp3781 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3782 (dp3783 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3784 (dp3785 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3786 (dp3787 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Custom MD5 Responses Failed' p3788 sg22 I00 sg37 g38 sg39 g3788 sbag3 (g7 g8 NtRp3789 (dp3790 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp3791 (dp3792 g18 g3 (g19 g5 (ltRp3793 (dp3794 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3795 (dp3796 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3797 (dp3798 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3799 (dp3800 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Average Compression Ratio' p3801 sg22 I00 sg37 g261 sg39 g3801 sbatRp3802 (dp3803 g12 I76 sg22 I00 sg11 NsbsS'HTTP Client' p3804 g3 (g4 g5 (lp3805 g3 (g7 g8 NtRp3806 (dp3807 g11 Nsg12 I0 sg13 I01 sg14 g3 (g15 g8 NtRp3808 (dp3809 g18 g3 (g19 g5 (ltRp3810 (dp3811 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3812 (dp3813 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3814 (dp3815 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3816 (dp3817 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Simulated Users' p3818 sg22 I00 sg37 g38 sg39 g3818 sbag3 (g7 g8 NtRp3819 (dp3820 g11 Nsg12 I1 sg13 I01 sg14 g3 (g15 g8 NtRp3821 (dp3822 g18 g3 (g19 g5 (ltRp3823 (dp3824 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3825 (dp3826 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3827 (dp3828 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3829 (dp3830 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Concurrent Connections' p3831 sg22 I00 sg37 g38 sg39 g3831 sbag3 (g7 g8 NtRp3832 (dp3833 g11 Nsg12 I2 sg13 I01 sg14 g3 (g15 g8 NtRp3834 (dp3835 g18 g3 (g19 g5 (ltRp3836 (dp3837 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3838 (dp3839 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3840 (dp3841 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3842 (dp3843 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connections' p3844 sg22 I00 sg37 g38 sg39 g3844 sbag3 (g7 g8 NtRp3845 (dp3846 g11 Nsg12 I3 sg13 I01 sg14 g3 (g15 g8 NtRp3847 (dp3848 g18 g3 (g19 g5 (ltRp3849 (dp3850 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3851 (dp3852 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3853 (dp3854 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3855 (dp3856 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Attempts' p3857 sg22 I00 sg37 g38 sg39 g3857 sbag3 (g7 g8 NtRp3858 (dp3859 g11 Nsg12 I4 sg13 I01 sg14 g3 (g15 g8 NtRp3860 (dp3861 g18 g3 (g19 g5 (ltRp3862 (dp3863 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3864 (dp3865 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3866 (dp3867 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3868 (dp3869 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connection Aborts' p3870 sg22 I00 sg37 g38 sg39 g3870 sbag3 (g7 g8 NtRp3871 (dp3872 g11 Nsg12 I5 sg13 I01 sg14 g3 (g15 g8 NtRp3873 (dp3874 g18 g3 (g19 g5 (ltRp3875 (dp3876 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3877 (dp3878 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3879 (dp3880 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3881 (dp3882 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Aborts' p3883 sg22 I00 sg37 g38 sg39 g3883 sbag3 (g7 g8 NtRp3884 (dp3885 g11 Nsg12 I6 sg13 I01 sg14 g3 (g15 g8 NtRp3886 (dp3887 g18 g3 (g19 g5 (ltRp3888 (dp3889 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3890 (dp3891 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3892 (dp3893 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3894 (dp3895 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions' p3896 sg22 I00 sg37 g38 sg39 g3896 sbag3 (g7 g8 NtRp3897 (dp3898 g11 Nsg12 I7 sg13 I01 sg14 g3 (g15 g8 NtRp3899 (dp3900 g18 g3 (g19 g5 (ltRp3901 (dp3902 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3903 (dp3904 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3905 (dp3906 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3907 (dp3908 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes' p3909 sg22 I00 sg37 g38 sg39 g3909 sbag3 (g7 g8 NtRp3910 (dp3911 g11 Nsg12 I8 sg13 I01 sg14 g3 (g15 g8 NtRp3912 (dp3913 g18 g3 (g19 g5 (ltRp3914 (dp3915 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3916 (dp3917 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3918 (dp3919 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3920 (dp3921 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2812 sg22 I00 sg37 g38 sg39 g2812 sbag3 (g7 g8 NtRp3922 (dp3923 g11 Nsg12 I9 sg13 I01 sg14 g3 (g15 g8 NtRp3924 (dp3925 g18 g3 (g19 g5 (ltRp3926 (dp3927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3928 (dp3929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3930 (dp3931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3932 (dp3933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2825 sg22 I00 sg37 g38 sg39 g2825 sbag3 (g7 g8 NtRp3934 (dp3935 g11 Nsg12 I10 sg13 I01 sg14 g3 (g15 g8 NtRp3936 (dp3937 g18 g3 (g19 g5 (ltRp3938 (dp3939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3940 (dp3941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3942 (dp3943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3944 (dp3945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2838 sg22 I00 sg37 g38 sg39 g2838 sbag3 (g7 g8 NtRp3946 (dp3947 g11 Nsg12 I11 sg13 I01 sg14 g3 (g15 g8 NtRp3948 (dp3949 g18 g3 (g19 g5 (ltRp3950 (dp3951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3952 (dp3953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3954 (dp3955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3956 (dp3957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3137 sg22 I00 sg37 g38 sg39 g3137 sbag3 (g7 g8 NtRp3958 (dp3959 g11 Nsg12 I12 sg13 I01 sg14 g3 (g15 g8 NtRp3960 (dp3961 g18 g3 (g19 g5 (ltRp3962 (dp3963 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3964 (dp3965 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3966 (dp3967 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3968 (dp3969 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3150 sg22 I00 sg37 g38 sg39 g3150 sbag3 (g7 g8 NtRp3970 (dp3971 g11 Nsg12 I13 sg13 I01 sg14 g3 (g15 g8 NtRp3972 (dp3973 g18 g3 (g19 g5 (ltRp3974 (dp3975 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3976 (dp3977 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3978 (dp3979 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3980 (dp3981 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3163 sg22 I00 sg37 g38 sg39 g3163 sbag3 (g7 g8 NtRp3982 (dp3983 g11 Nsg12 I14 sg13 I01 sg14 g3 (g15 g8 NtRp3984 (dp3985 g18 g3 (g19 g5 (ltRp3986 (dp3987 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp3988 (dp3989 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp3990 (dp3991 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp3992 (dp3993 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3176 sg22 I00 sg37 g38 sg39 g3176 sbag3 (g7 g8 NtRp3994 (dp3995 g11 Nsg12 I15 sg13 I01 sg14 g3 (g15 g8 NtRp3996 (dp3997 g18 g3 (g19 g5 (ltRp3998 (dp3999 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4000 (dp4001 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4002 (dp4003 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4004 (dp4005 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3189 sg22 I00 sg37 g38 sg39 g3189 sbag3 (g7 g8 NtRp4006 (dp4007 g11 Nsg12 I16 sg13 I01 sg14 g3 (g15 g8 NtRp4008 (dp4009 g18 g3 (g19 g5 (ltRp4010 (dp4011 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4012 (dp4013 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4014 (dp4015 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4016 (dp4017 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3202 sg22 I00 sg37 g38 sg39 g3202 sbag3 (g7 g8 NtRp4018 (dp4019 g11 Nsg12 I17 sg13 I01 sg14 g3 (g15 g8 NtRp4020 (dp4021 g18 g3 (g19 g5 (ltRp4022 (dp4023 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4024 (dp4025 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4026 (dp4027 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4028 (dp4029 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3215 sg22 I00 sg37 g38 sg39 g3215 sbag3 (g7 g8 NtRp4030 (dp4031 g11 Nsg12 I18 sg13 I01 sg14 g3 (g15 g8 NtRp4032 (dp4033 g18 g3 (g19 g5 (ltRp4034 (dp4035 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4036 (dp4037 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4038 (dp4039 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4040 (dp4041 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2851 sg22 I00 sg37 g38 sg39 g2851 sbag3 (g7 g8 NtRp4042 (dp4043 g11 Nsg12 I19 sg13 I01 sg14 g3 (g15 g8 NtRp4044 (dp4045 g18 g3 (g19 g5 (ltRp4046 (dp4047 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4048 (dp4049 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4050 (dp4051 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4052 (dp4053 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2864 sg22 I00 sg37 g38 sg39 g2864 sbag3 (g7 g8 NtRp4054 (dp4055 g11 Nsg12 I20 sg13 I01 sg14 g3 (g15 g8 NtRp4056 (dp4057 g18 g3 (g19 g5 (ltRp4058 (dp4059 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4060 (dp4061 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4062 (dp4063 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4064 (dp4065 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2877 sg22 I00 sg37 g38 sg39 g2877 sbag3 (g7 g8 NtRp4066 (dp4067 g11 Nsg12 I21 sg13 I01 sg14 g3 (g15 g8 NtRp4068 (dp4069 g18 g3 (g19 g5 (ltRp4070 (dp4071 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4072 (dp4073 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4074 (dp4075 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4076 (dp4077 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2890 sg22 I00 sg37 g38 sg39 g2890 sbag3 (g7 g8 NtRp4078 (dp4079 g11 Nsg12 I22 sg13 I01 sg14 g3 (g15 g8 NtRp4080 (dp4081 g18 g3 (g19 g5 (ltRp4082 (dp4083 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4084 (dp4085 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4086 (dp4087 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4088 (dp4089 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2903 sg22 I00 sg37 g38 sg39 g2903 sbag3 (g7 g8 NtRp4090 (dp4091 g11 Nsg12 I23 sg13 I01 sg14 g3 (g15 g8 NtRp4092 (dp4093 g18 g3 (g19 g5 (ltRp4094 (dp4095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4096 (dp4097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4098 (dp4099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4100 (dp4101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2916 sg22 I00 sg37 g38 sg39 g2916 sbag3 (g7 g8 NtRp4102 (dp4103 g11 Nsg12 I24 sg13 I01 sg14 g3 (g15 g8 NtRp4104 (dp4105 g18 g3 (g19 g5 (ltRp4106 (dp4107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4108 (dp4109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4110 (dp4111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4112 (dp4113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2929 sg22 I00 sg37 g38 sg39 g2929 sbag3 (g7 g8 NtRp4114 (dp4115 g11 Nsg12 I25 sg13 I01 sg14 g3 (g15 g8 NtRp4116 (dp4117 g18 g3 (g19 g5 (ltRp4118 (dp4119 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4120 (dp4121 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4122 (dp4123 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4124 (dp4125 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2942 sg22 I00 sg37 g38 sg39 g2942 sbag3 (g7 g8 NtRp4126 (dp4127 g11 Nsg12 I26 sg13 I01 sg14 g3 (g15 g8 NtRp4128 (dp4129 g18 g3 (g19 g5 (ltRp4130 (dp4131 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4132 (dp4133 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4134 (dp4135 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4136 (dp4137 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2955 sg22 I00 sg37 g38 sg39 g2955 sbag3 (g7 g8 NtRp4138 (dp4139 g11 Nsg12 I27 sg13 I01 sg14 g3 (g15 g8 NtRp4140 (dp4141 g18 g3 (g19 g5 (ltRp4142 (dp4143 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4144 (dp4145 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4146 (dp4147 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4148 (dp4149 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2968 sg22 I00 sg37 g38 sg39 g2968 sbag3 (g7 g8 NtRp4150 (dp4151 g11 Nsg12 I28 sg13 I01 sg14 g3 (g15 g8 NtRp4152 (dp4153 g18 g3 (g19 g5 (ltRp4154 (dp4155 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4156 (dp4157 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4158 (dp4159 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4160 (dp4161 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2981 sg22 I00 sg37 g38 sg39 g2981 sbag3 (g7 g8 NtRp4162 (dp4163 g11 Nsg12 I29 sg13 I01 sg14 g3 (g15 g8 NtRp4164 (dp4165 g18 g3 (g19 g5 (ltRp4166 (dp4167 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4168 (dp4169 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4170 (dp4171 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4172 (dp4173 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g2994 sg22 I00 sg37 g38 sg39 g2994 sbag3 (g7 g8 NtRp4174 (dp4175 g11 Nsg12 I30 sg13 I01 sg14 g3 (g15 g8 NtRp4176 (dp4177 g18 g3 (g19 g5 (ltRp4178 (dp4179 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4180 (dp4181 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4182 (dp4183 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4184 (dp4185 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3007 sg22 I00 sg37 g38 sg39 g3007 sbag3 (g7 g8 NtRp4186 (dp4187 g11 Nsg12 I31 sg13 I01 sg14 g3 (g15 g8 NtRp4188 (dp4189 g18 g3 (g19 g5 (ltRp4190 (dp4191 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4192 (dp4193 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4194 (dp4195 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4196 (dp4197 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3020 sg22 I00 sg37 g38 sg39 g3020 sbag3 (g7 g8 NtRp4198 (dp4199 g11 Nsg12 I32 sg13 I01 sg14 g3 (g15 g8 NtRp4200 (dp4201 g18 g3 (g19 g5 (ltRp4202 (dp4203 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4204 (dp4205 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4206 (dp4207 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4208 (dp4209 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3033 sg22 I00 sg37 g38 sg39 g3033 sbag3 (g7 g8 NtRp4210 (dp4211 g11 Nsg12 I33 sg13 I01 sg14 g3 (g15 g8 NtRp4212 (dp4213 g18 g3 (g19 g5 (ltRp4214 (dp4215 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4216 (dp4217 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4218 (dp4219 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4220 (dp4221 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3046 sg22 I00 sg37 g38 sg39 g3046 sbag3 (g7 g8 NtRp4222 (dp4223 g11 Nsg12 I34 sg13 I01 sg14 g3 (g15 g8 NtRp4224 (dp4225 g18 g3 (g19 g5 (ltRp4226 (dp4227 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4228 (dp4229 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4230 (dp4231 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4232 (dp4233 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3059 sg22 I00 sg37 g38 sg39 g3059 sbag3 (g7 g8 NtRp4234 (dp4235 g11 Nsg12 I35 sg13 I01 sg14 g3 (g15 g8 NtRp4236 (dp4237 g18 g3 (g19 g5 (ltRp4238 (dp4239 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4240 (dp4241 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4242 (dp4243 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4244 (dp4245 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3072 sg22 I00 sg37 g38 sg39 g3072 sbag3 (g7 g8 NtRp4246 (dp4247 g11 Nsg12 I36 sg13 I01 sg14 g3 (g15 g8 NtRp4248 (dp4249 g18 g3 (g19 g5 (ltRp4250 (dp4251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4252 (dp4253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4254 (dp4255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4256 (dp4257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Session Timeouts (408)' p4258 sg22 I00 sg37 g38 sg39 g4258 sbag3 (g7 g8 NtRp4259 (dp4260 g11 Nsg12 I37 sg13 I01 sg14 g3 (g15 g8 NtRp4261 (dp4262 g18 g3 (g19 g5 (ltRp4263 (dp4264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4265 (dp4266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4267 (dp4268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4269 (dp4270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Request Precondition Failed (412)' p4271 sg22 I00 sg37 g38 sg39 g4271 sbag3 (g7 g8 NtRp4272 (dp4273 g11 Nsg12 I38 sg13 I01 sg14 g3 (g15 g8 NtRp4274 (dp4275 g18 g3 (g19 g5 (ltRp4276 (dp4277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4278 (dp4279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4280 (dp4281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4282 (dp4283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Sessions Rejected (503)' p4284 sg22 I00 sg37 g38 sg39 g4284 sbag3 (g7 g8 NtRp4285 (dp4286 g11 Nsg12 I39 sg13 I01 sg14 g3 (g15 g8 NtRp4287 (dp4288 g18 g3 (g19 g5 (ltRp4289 (dp4290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4291 (dp4292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4293 (dp4294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4295 (dp4296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3085 sg22 I00 sg37 g38 sg39 g3085 sbag3 (g7 g8 NtRp4297 (dp4298 g11 Nsg12 I40 sg13 I01 sg14 g3 (g15 g8 NtRp4299 (dp4300 g18 g3 (g19 g5 (ltRp4301 (dp4302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4303 (dp4304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4305 (dp4306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4307 (dp4308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 g3098 sg22 I00 sg37 g38 sg39 g3098 sbag3 (g7 g8 NtRp4309 (dp4310 g11 Nsg12 I41 sg13 I01 sg14 g3 (g15 g8 NtRp4311 (dp4312 g18 g3 (g19 g5 (ltRp4313 (dp4314 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4315 (dp4316 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4317 (dp4318 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4319 (dp4320 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Transactions Active' p4321 sg22 I00 sg37 g38 sg39 g4321 sbag3 (g7 g8 NtRp4322 (dp4323 g11 Nsg12 I42 sg13 I01 sg14 g3 (g15 g8 NtRp4324 (dp4325 g18 g3 (g19 g5 (ltRp4326 (dp4327 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4328 (dp4329 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4330 (dp4331 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4332 (dp4333 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Users Active' p4334 sg22 I00 sg37 g38 sg39 g4334 sbag3 (g7 g8 NtRp4335 (dp4336 g11 Nsg12 I43 sg13 I01 sg14 g3 (g15 g8 NtRp4337 (dp4338 g18 g3 (g19 g5 (ltRp4339 (dp4340 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4341 (dp4342 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4343 (dp4344 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4345 (dp4346 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Received' p4347 sg22 I00 sg37 g38 sg39 g4347 sbag3 (g7 g8 NtRp4348 (dp4349 g11 Nsg12 I44 sg13 I01 sg14 g3 (g15 g8 NtRp4350 (dp4351 g18 g3 (g19 g5 (ltRp4352 (dp4353 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4354 (dp4355 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4356 (dp4357 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4358 (dp4359 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Received' p4360 sg22 I00 sg37 g38 sg39 g4360 sbag3 (g7 g8 NtRp4361 (dp4362 g11 Nsg12 I45 sg13 I01 sg14 g3 (g15 g8 NtRp4363 (dp4364 g18 g3 (g19 g5 (ltRp4365 (dp4366 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4367 (dp4368 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4369 (dp4370 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4371 (dp4372 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Received' p4373 sg22 I00 sg37 g38 sg39 g4373 sbag3 (g7 g8 NtRp4374 (dp4375 g11 Nsg12 I46 sg13 I01 sg14 g3 (g15 g8 NtRp4376 (dp4377 g18 g3 (g19 g5 (ltRp4378 (dp4379 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4380 (dp4381 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4382 (dp4383 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4384 (dp4385 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Unrecognized Content-Encoding Received' p4386 sg22 I00 sg37 g38 sg39 g4386 sbag3 (g7 g8 NtRp4387 (dp4388 g11 Nsg12 I47 sg13 I01 sg14 g3 (g15 g8 NtRp4389 (dp4390 g18 g3 (g19 g5 (ltRp4391 (dp4392 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4393 (dp4394 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4395 (dp4396 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4397 (dp4398 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Successful' p4399 sg22 I00 sg37 g38 sg39 g4399 sbag3 (g7 g8 NtRp4400 (dp4401 g11 Nsg12 I48 sg13 I01 sg14 g3 (g15 g8 NtRp4402 (dp4403 g18 g3 (g19 g5 (ltRp4404 (dp4405 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4406 (dp4407 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4408 (dp4409 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4410 (dp4411 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Successful' p4412 sg22 I00 sg37 g38 sg39 g4412 sbag3 (g7 g8 NtRp4413 (dp4414 g11 Nsg12 I49 sg13 I01 sg14 g3 (g15 g8 NtRp4415 (dp4416 g18 g3 (g19 g5 (ltRp4417 (dp4418 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4419 (dp4420 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4421 (dp4422 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4423 (dp4424 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Successful' p4425 sg22 I00 sg37 g38 sg39 g4425 sbag3 (g7 g8 NtRp4426 (dp4427 g11 Nsg12 I50 sg13 I01 sg14 g3 (g15 g8 NtRp4428 (dp4429 g18 g3 (g19 g5 (ltRp4430 (dp4431 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4432 (dp4433 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4434 (dp4435 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4436 (dp4437 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-Encoded Responses Decode Failed' p4438 sg22 I00 sg37 g38 sg39 g4438 sbag3 (g7 g8 NtRp4439 (dp4440 g11 Nsg12 I51 sg13 I01 sg14 g3 (g15 g8 NtRp4441 (dp4442 g18 g3 (g19 g5 (ltRp4443 (dp4444 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4445 (dp4446 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4447 (dp4448 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4449 (dp4450 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed' p4451 sg22 I00 sg37 g38 sg39 g4451 sbag3 (g7 g8 NtRp4452 (dp4453 g11 Nsg12 I52 sg13 I01 sg14 g3 (g15 g8 NtRp4454 (dp4455 g18 g3 (g19 g5 (ltRp4456 (dp4457 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4458 (dp4459 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4460 (dp4461 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4462 (dp4463 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed' p4464 sg22 I00 sg37 g38 sg39 g4464 sbag3 (g7 g8 NtRp4465 (dp4466 g11 Nsg12 I53 sg13 I01 sg14 g3 (g15 g8 NtRp4467 (dp4468 g18 g3 (g19 g5 (ltRp4469 (dp4470 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4471 (dp4472 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4473 (dp4474 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4475 (dp4476 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Data Error' p4477 sg22 I00 sg37 g38 sg39 g4477 sbag3 (g7 g8 NtRp4478 (dp4479 g11 Nsg12 I54 sg13 I01 sg14 g3 (g15 g8 NtRp4480 (dp4481 g18 g3 (g19 g5 (ltRp4482 (dp4483 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4484 (dp4485 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4486 (dp4487 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4488 (dp4489 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Gzip Content-Encoding Decode Failed - Decoding Error' p4490 sg22 I00 sg37 g38 sg39 g4490 sbag3 (g7 g8 NtRp4491 (dp4492 g11 Nsg12 I55 sg13 I01 sg14 g3 (g15 g8 NtRp4493 (dp4494 g18 g3 (g19 g5 (ltRp4495 (dp4496 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4497 (dp4498 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4499 (dp4500 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4501 (dp4502 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Data Error' p4503 sg22 I00 sg37 g38 sg39 g4503 sbag3 (g7 g8 NtRp4504 (dp4505 g11 Nsg12 I56 sg13 I01 sg14 g3 (g15 g8 NtRp4506 (dp4507 g18 g3 (g19 g5 (ltRp4508 (dp4509 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4510 (dp4511 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4512 (dp4513 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4514 (dp4515 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Deflate Content-Encoding Decode Failed - Decoding Error' p4516 sg22 I00 sg37 g38 sg39 g4516 sbag3 (g7 g8 NtRp4517 (dp4518 g11 Nsg12 I57 sg13 I01 sg14 g3 (g15 g8 NtRp4519 (dp4520 g18 g3 (g19 g5 (ltRp4521 (dp4522 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4523 (dp4524 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4525 (dp4526 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4527 (dp4528 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Headers Received' p4529 sg22 I00 sg37 g38 sg39 g4529 sbag3 (g7 g8 NtRp4530 (dp4531 g11 Nsg12 I58 sg13 I01 sg14 g3 (g15 g8 NtRp4532 (dp4533 g18 g3 (g19 g5 (ltRp4534 (dp4535 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4536 (dp4537 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4538 (dp4539 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4540 (dp4541 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoded Responses Received' p4542 sg22 I00 sg37 g38 sg39 g4542 sbag3 (g7 g8 NtRp4543 (dp4544 g11 Nsg12 I59 sg13 I01 sg14 g3 (g15 g8 NtRp4545 (dp4546 g18 g3 (g19 g5 (ltRp4547 (dp4548 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4549 (dp4550 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4551 (dp4552 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4553 (dp4554 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Successful' p4555 sg22 I00 sg37 g38 sg39 g4555 sbag3 (g7 g8 NtRp4556 (dp4557 g11 Nsg12 I60 sg13 I01 sg14 g3 (g15 g8 NtRp4558 (dp4559 g18 g3 (g19 g5 (ltRp4560 (dp4561 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4562 (dp4563 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4564 (dp4565 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4566 (dp4567 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Decode Failed' p4568 sg22 I00 sg37 g38 sg39 g4568 sbag3 (g7 g8 NtRp4569 (dp4570 g11 Nsg12 I61 sg13 I01 sg14 g3 (g15 g8 NtRp4571 (dp4572 g18 g3 (g19 g5 (ltRp4573 (dp4574 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4575 (dp4576 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4577 (dp4578 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4579 (dp4580 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Received' p4581 sg22 I00 sg37 g38 sg39 g4581 sbag3 (g7 g8 NtRp4582 (dp4583 g11 Nsg12 I62 sg13 I01 sg14 g3 (g15 g8 NtRp4584 (dp4585 g18 g3 (g19 g5 (ltRp4586 (dp4587 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4588 (dp4589 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4590 (dp4591 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4592 (dp4593 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Chunked Transfer-Encoding Headers Sent' p4594 sg22 I00 sg37 g38 sg39 g4594 sbag3 (g7 g8 NtRp4595 (dp4596 g11 Nsg12 I63 sg13 I01 sg14 g3 (g15 g8 NtRp4597 (dp4598 g18 g3 (g19 g5 (ltRp4599 (dp4600 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4601 (dp4602 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4603 (dp4604 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4605 (dp4606 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Total Chunks Sent' p4607 sg22 I00 sg37 g38 sg39 g4607 sbag3 (g7 g8 NtRp4608 (dp4609 g11 Nsg12 I64 sg13 I01 sg14 g3 (g15 g8 NtRp4610 (dp4611 g18 g3 (g19 g5 (ltRp4612 (dp4613 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4614 (dp4615 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4616 (dp4617 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4618 (dp4619 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Responses Received' p4620 sg22 I00 sg37 g38 sg39 g4620 sbag3 (g7 g8 NtRp4621 (dp4622 g11 Nsg12 I65 sg13 I01 sg14 g3 (g15 g8 NtRp4623 (dp4624 g18 g3 (g19 g5 (ltRp4625 (dp4626 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4627 (dp4628 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4629 (dp4630 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4631 (dp4632 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Successful' p4633 sg22 I00 sg37 g38 sg39 g4633 sbag3 (g7 g8 NtRp4634 (dp4635 g11 Nsg12 I66 sg13 I01 sg14 g3 (g15 g8 NtRp4636 (dp4637 g18 g3 (g19 g5 (ltRp4638 (dp4639 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4640 (dp4641 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4642 (dp4643 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4644 (dp4645 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Content-MD5 Check Failed' p4646 sg22 I00 sg37 g38 sg39 g4646 sbag3 (g7 g8 NtRp4647 (dp4648 g11 Nsg12 I67 sg13 I01 sg14 g3 (g15 g8 NtRp4649 (dp4650 g18 g3 (g19 g5 (ltRp4651 (dp4652 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4653 (dp4654 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4655 (dp4656 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4657 (dp4658 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Responses Received' p4659 sg22 I00 sg37 g38 sg39 g4659 sbag3 (g7 g8 NtRp4660 (dp4661 g11 Nsg12 I68 sg13 I01 sg14 g3 (g15 g8 NtRp4662 (dp4663 g18 g3 (g19 g5 (ltRp4664 (dp4665 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4666 (dp4667 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4668 (dp4669 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4670 (dp4671 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Successful' p4672 sg22 I00 sg37 g38 sg39 g4672 sbag3 (g7 g8 NtRp4673 (dp4674 g11 Nsg12 I69 sg13 I01 sg14 g3 (g15 g8 NtRp4675 (dp4676 g18 g3 (g19 g5 (ltRp4677 (dp4678 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4679 (dp4680 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4681 (dp4682 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4683 (dp4684 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Custom-MD5 Check Failed' p4685 sg22 I00 sg37 g38 sg39 g4685 sbag3 (g7 g8 NtRp4686 (dp4687 g11 Nsg12 I70 sg13 I01 sg14 g3 (g15 g8 NtRp4688 (dp4689 g18 g3 (g19 g5 (ltRp4690 (dp4691 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4692 (dp4693 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4694 (dp4695 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4696 (dp4697 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Sent' p4698 sg22 I00 sg37 g38 sg39 g4698 sbag3 (g7 g8 NtRp4699 (dp4700 g11 Nsg12 I71 sg13 I01 sg14 g3 (g15 g8 NtRp4701 (dp4702 g18 g3 (g19 g5 (ltRp4703 (dp4704 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4705 (dp4706 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4707 (dp4708 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4709 (dp4710 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Bytes Received' p4711 sg22 I00 sg37 g38 sg39 g4711 sbag3 (g7 g8 NtRp4712 (dp4713 g11 Nsg12 I72 sg13 I01 sg14 g3 (g15 g8 NtRp4714 (dp4715 g18 g3 (g19 g5 (ltRp4716 (dp4717 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4718 (dp4719 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4720 (dp4721 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4722 (dp4723 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Sent' p4724 sg22 I00 sg37 g38 sg39 g4724 sbag3 (g7 g8 NtRp4725 (dp4726 g11 Nsg12 I73 sg13 I01 sg14 g3 (g15 g8 NtRp4727 (dp4728 g18 g3 (g19 g5 (ltRp4729 (dp4730 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4731 (dp4732 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4733 (dp4734 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4735 (dp4736 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Content Bytes Received' p4737 sg22 I00 sg37 g38 sg39 g4737 sbag3 (g7 g8 NtRp4738 (dp4739 g11 Nsg12 I74 sg13 I01 sg14 g3 (g15 g8 NtRp4740 (dp4741 g18 g3 (g19 g5 (ltRp4742 (dp4743 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4744 (dp4745 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4746 (dp4747 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4748 (dp4749 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Decompressed Content Bytes Received' p4750 sg22 I00 sg37 g38 sg39 g4750 sbag3 (g7 g8 NtRp4751 (dp4752 g11 Nsg12 I75 sg13 I01 sg14 g3 (g15 g8 NtRp4753 (dp4754 g18 g3 (g19 g5 (ltRp4755 (dp4756 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4757 (dp4758 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4759 (dp4760 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4761 (dp4762 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Received' p4763 sg22 I00 sg37 g38 sg39 g4763 sbag3 (g7 g8 NtRp4764 (dp4765 g11 Nsg12 I76 sg13 I01 sg14 g3 (g15 g8 NtRp4766 (dp4767 g18 g3 (g19 g5 (ltRp4768 (dp4769 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4770 (dp4771 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4772 (dp4773 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4774 (dp4775 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Sent' p4776 sg22 I00 sg37 g38 sg39 g4776 sbag3 (g7 g8 NtRp4777 (dp4778 g11 Nsg12 I77 sg13 I01 sg14 g3 (g15 g8 NtRp4779 (dp4780 g18 g3 (g19 g5 (ltRp4781 (dp4782 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4783 (dp4784 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4785 (dp4786 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4787 (dp4788 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected' p4789 sg22 I00 sg37 g38 sg39 g4789 sbag3 (g7 g8 NtRp4790 (dp4791 g11 Nsg12 I78 sg13 I01 sg14 g3 (g15 g8 NtRp4792 (dp4793 g18 g3 (g19 g5 (ltRp4794 (dp4795 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4796 (dp4797 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4798 (dp4799 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4800 (dp4801 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Path Match Failed)' p4802 sg22 I00 sg37 g38 sg39 g4802 sbag3 (g7 g8 NtRp4803 (dp4804 g11 Nsg12 I79 sg13 I01 sg14 g3 (g15 g8 NtRp4805 (dp4806 g18 g3 (g19 g5 (ltRp4807 (dp4808 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4809 (dp4810 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4811 (dp4812 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4813 (dp4814 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Domain Match Failed)' p4815 sg22 I00 sg37 g38 sg39 g4815 sbag3 (g7 g8 NtRp4816 (dp4817 g11 Nsg12 I80 sg13 I01 sg14 g3 (g15 g8 NtRp4818 (dp4819 g18 g3 (g19 g5 (ltRp4820 (dp4821 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4822 (dp4823 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4824 (dp4825 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4826 (dp4827 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Cookiejar Overflow)' p4828 sg22 I00 sg37 g38 sg39 g4828 sbag3 (g7 g8 NtRp4829 (dp4830 g11 Nsg12 I81 sg13 I01 sg14 g3 (g15 g8 NtRp4831 (dp4832 g18 g3 (g19 g5 (ltRp4833 (dp4834 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4835 (dp4836 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4837 (dp4838 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4839 (dp4840 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookies Rejected - (Probabilistic Reject)' p4841 sg22 I00 sg37 g38 sg39 g4841 sbag3 (g7 g8 NtRp4842 (dp4843 g11 Nsg12 I82 sg13 I01 sg14 g3 (g15 g8 NtRp4844 (dp4845 g18 g3 (g19 g5 (ltRp4846 (dp4847 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4848 (dp4849 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4850 (dp4851 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4852 (dp4853 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Cookie headers Rejected - (Memory Overflow)' p4854 sg22 I00 sg37 g38 sg39 g4854 sbag3 (g7 g8 NtRp4855 (dp4856 g11 Nsg12 I83 sg13 I01 sg14 g3 (g15 g8 NtRp4857 (dp4858 g18 g3 (g19 g5 (ltRp4859 (dp4860 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4861 (dp4862 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4863 (dp4864 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4865 (dp4866 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Connect Time (us)' p4867 sg22 I00 sg37 g261 sg39 g4867 sbag3 (g7 g8 NtRp4868 (dp4869 g11 Nsg12 I84 sg13 I01 sg14 g3 (g15 g8 NtRp4870 (dp4871 g18 g3 (g19 g5 (ltRp4872 (dp4873 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4874 (dp4875 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4876 (dp4877 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4878 (dp4879 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To First Byte (us)' p4880 sg22 I00 sg37 g261 sg39 g4880 sbag3 (g7 g8 NtRp4881 (dp4882 g11 Nsg12 I85 sg13 I01 sg14 g3 (g15 g8 NtRp4883 (dp4884 g18 g3 (g19 g5 (ltRp4885 (dp4886 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4887 (dp4888 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4889 (dp4890 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4891 (dp4892 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Time To Last Byte (us)' p4893 sg22 I00 sg37 g261 sg39 g4893 sbag3 (g7 g8 NtRp4894 (dp4895 g11 Nsg12 I86 sg13 I01 sg14 g3 (g15 g8 NtRp4896 (dp4897 g18 g3 (g19 g5 (ltRp4898 (dp4899 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4900 (dp4901 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4902 (dp4903 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4904 (dp4905 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Average (us)' p4906 sg22 I00 sg37 g261 sg39 g4906 sbag3 (g7 g8 NtRp4907 (dp4908 g11 Nsg12 I87 sg13 I01 sg14 g3 (g15 g8 NtRp4909 (dp4910 g18 g3 (g19 g5 (ltRp4911 (dp4912 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4913 (dp4914 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4915 (dp4916 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4917 (dp4918 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Minimum (us)' p4919 sg22 I00 sg37 g38 sg39 g4919 sbag3 (g7 g8 NtRp4920 (dp4921 g11 Nsg12 I88 sg13 I01 sg14 g3 (g15 g8 NtRp4922 (dp4923 g18 g3 (g19 g5 (ltRp4924 (dp4925 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4926 (dp4927 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4928 (dp4929 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4930 (dp4931 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Old Session Abort Delay - Maximum (us)' p4932 sg22 I00 sg37 g38 sg39 g4932 sbag3 (g7 g8 NtRp4933 (dp4934 g11 Nsg12 I89 sg13 I01 sg14 g3 (g15 g8 NtRp4935 (dp4936 g18 g3 (g19 g5 (ltRp4937 (dp4938 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4939 (dp4940 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4941 (dp4942 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4943 (dp4944 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Failed' p4945 sg22 I00 sg37 g38 sg39 g4945 sbag3 (g7 g8 NtRp4946 (dp4947 g11 Nsg12 I90 sg13 I01 sg14 g3 (g15 g8 NtRp4948 (dp4949 g18 g3 (g19 g5 (ltRp4950 (dp4951 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4952 (dp4953 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4954 (dp4955 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4956 (dp4957 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client Total Data Integrity Check Succeeded' p4958 sg22 I00 sg37 g38 sg39 g4958 sbag3 (g7 g8 NtRp4959 (dp4960 g11 Nsg12 I91 sg13 I01 sg14 g3 (g15 g8 NtRp4961 (dp4962 g18 g3 (g19 g5 (ltRp4963 (dp4964 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4965 (dp4966 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4967 (dp4968 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4969 (dp4970 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Received' p4971 sg22 I00 sg37 g38 sg39 g4971 sbag3 (g7 g8 NtRp4972 (dp4973 g11 Nsg12 I92 sg13 I01 sg14 g3 (g15 g8 NtRp4974 (dp4975 g18 g3 (g19 g5 (ltRp4976 (dp4977 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4978 (dp4979 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4980 (dp4981 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4982 (dp4983 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Received' p4984 sg22 I00 sg37 g38 sg39 g4984 sbag3 (g7 g8 NtRp4985 (dp4986 g11 Nsg12 I93 sg13 I01 sg14 g3 (g15 g8 NtRp4987 (dp4988 g18 g3 (g19 g5 (ltRp4989 (dp4990 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp4991 (dp4992 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp4993 (dp4994 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp4995 (dp4996 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Received' p4997 sg22 I00 sg37 g38 sg39 g4997 sbag3 (g7 g8 NtRp4998 (dp4999 g11 Nsg12 I94 sg13 I01 sg14 g3 (g15 g8 NtRp5000 (dp5001 g18 g3 (g19 g5 (ltRp5002 (dp5003 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5004 (dp5005 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5006 (dp5007 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5008 (dp5009 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Received' p5010 sg22 I00 sg37 g38 sg39 g5010 sbag3 (g7 g8 NtRp5011 (dp5012 g11 Nsg12 I95 sg13 I01 sg14 g3 (g15 g8 NtRp5013 (dp5014 g18 g3 (g19 g5 (ltRp5015 (dp5016 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5017 (dp5018 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5019 (dp5020 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5021 (dp5022 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Received' p5023 sg22 I00 sg37 g38 sg39 g5023 sbag3 (g7 g8 NtRp5024 (dp5025 g11 Nsg12 I96 sg13 I01 sg14 g3 (g15 g8 NtRp5026 (dp5027 g18 g3 (g19 g5 (ltRp5028 (dp5029 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5030 (dp5031 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5032 (dp5033 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5034 (dp5035 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Received' p5036 sg22 I00 sg37 g38 sg39 g5036 sbag3 (g7 g8 NtRp5037 (dp5038 g11 Nsg12 I97 sg13 I01 sg14 g3 (g15 g8 NtRp5039 (dp5040 g18 g3 (g19 g5 (ltRp5041 (dp5042 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5043 (dp5044 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5045 (dp5046 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5047 (dp5048 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Received' p5049 sg22 I00 sg37 g38 sg39 g5049 sbag3 (g7 g8 NtRp5050 (dp5051 g11 Nsg12 I98 sg13 I01 sg14 g3 (g15 g8 NtRp5052 (dp5053 g18 g3 (g19 g5 (ltRp5054 (dp5055 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5056 (dp5057 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5058 (dp5059 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5060 (dp5061 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Received' p5062 sg22 I00 sg37 g38 sg39 g5062 sbag3 (g7 g8 NtRp5063 (dp5064 g11 Nsg12 I99 sg13 I01 sg14 g3 (g15 g8 NtRp5065 (dp5066 g18 g3 (g19 g5 (ltRp5067 (dp5068 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5069 (dp5070 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5071 (dp5072 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5073 (dp5074 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Received' p5075 sg22 I00 sg37 g38 sg39 g5075 sbag3 (g7 g8 NtRp5076 (dp5077 g11 Nsg12 I100 sg13 I01 sg14 g3 (g15 g8 NtRp5078 (dp5079 g18 g3 (g19 g5 (ltRp5080 (dp5081 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5082 (dp5083 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5084 (dp5085 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5086 (dp5087 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Received' p5088 sg22 I00 sg37 g38 sg39 g5088 sbag3 (g7 g8 NtRp5089 (dp5090 g11 Nsg12 I101 sg13 I01 sg14 g3 (g15 g8 NtRp5091 (dp5092 g18 g3 (g19 g5 (ltRp5093 (dp5094 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5095 (dp5096 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5097 (dp5098 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5099 (dp5100 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Data Frames Sent' p5101 sg22 I00 sg37 g38 sg39 g5101 sbag3 (g7 g8 NtRp5102 (dp5103 g11 Nsg12 I102 sg13 I01 sg14 g3 (g15 g8 NtRp5104 (dp5105 g18 g3 (g19 g5 (ltRp5106 (dp5107 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5108 (dp5109 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5110 (dp5111 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5112 (dp5113 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Header Frames Sent' p5114 sg22 I00 sg37 g38 sg39 g5114 sbag3 (g7 g8 NtRp5115 (dp5116 g11 Nsg12 I103 sg13 I01 sg14 g3 (g15 g8 NtRp5117 (dp5118 g18 g3 (g19 g5 (ltRp5119 (dp5120 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5121 (dp5122 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5123 (dp5124 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5125 (dp5126 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Priority Frames Sent' p5127 sg22 I00 sg37 g38 sg39 g5127 sbag3 (g7 g8 NtRp5128 (dp5129 g11 Nsg12 I104 sg13 I01 sg14 g3 (g15 g8 NtRp5130 (dp5131 g18 g3 (g19 g5 (ltRp5132 (dp5133 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5134 (dp5135 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5136 (dp5137 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5138 (dp5139 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Reset Stream Frames Sent' p5140 sg22 I00 sg37 g38 sg39 g5140 sbag3 (g7 g8 NtRp5141 (dp5142 g11 Nsg12 I105 sg13 I01 sg14 g3 (g15 g8 NtRp5143 (dp5144 g18 g3 (g19 g5 (ltRp5145 (dp5146 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5147 (dp5148 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5149 (dp5150 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5151 (dp5152 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Frames Sent' p5153 sg22 I00 sg37 g38 sg39 g5153 sbag3 (g7 g8 NtRp5154 (dp5155 g11 Nsg12 I106 sg13 I01 sg14 g3 (g15 g8 NtRp5156 (dp5157 g18 g3 (g19 g5 (ltRp5158 (dp5159 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5160 (dp5161 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5162 (dp5163 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5164 (dp5165 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Push Promise Frames Sent' p5166 sg22 I00 sg37 g38 sg39 g5166 sbag3 (g7 g8 NtRp5167 (dp5168 g11 Nsg12 I107 sg13 I01 sg14 g3 (g15 g8 NtRp5169 (dp5170 g18 g3 (g19 g5 (ltRp5171 (dp5172 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5173 (dp5174 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5175 (dp5176 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5177 (dp5178 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Ping Frames Sent' p5179 sg22 I00 sg37 g38 sg39 g5179 sbag3 (g7 g8 NtRp5180 (dp5181 g11 Nsg12 I108 sg13 I01 sg14 g3 (g15 g8 NtRp5182 (dp5183 g18 g3 (g19 g5 (ltRp5184 (dp5185 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5186 (dp5187 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5188 (dp5189 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5190 (dp5191 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Go Away Frames Sent' p5192 sg22 I00 sg37 g38 sg39 g5192 sbag3 (g7 g8 NtRp5193 (dp5194 g11 Nsg12 I109 sg13 I01 sg14 g3 (g15 g8 NtRp5195 (dp5196 g18 g3 (g19 g5 (ltRp5197 (dp5198 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5199 (dp5200 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5201 (dp5202 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5203 (dp5204 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Window Update Frames Sent' p5205 sg22 I00 sg37 g38 sg39 g5205 sbag3 (g7 g8 NtRp5206 (dp5207 g11 Nsg12 I110 sg13 I01 sg14 g3 (g15 g8 NtRp5208 (dp5209 g18 g3 (g19 g5 (ltRp5210 (dp5211 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5212 (dp5213 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5214 (dp5215 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5216 (dp5217 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Continuation Frames Sent' p5218 sg22 I00 sg37 g38 sg39 g5218 sbag3 (g7 g8 NtRp5219 (dp5220 g11 Nsg12 I111 sg13 I01 sg14 g3 (g15 g8 NtRp5221 (dp5222 g18 g3 (g19 g5 (ltRp5223 (dp5224 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5225 (dp5226 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5227 (dp5228 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5229 (dp5230 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Client' p5231 sg22 I00 sg37 g38 sg39 g5231 sbag3 (g7 g8 NtRp5232 (dp5233 g11 Nsg12 I112 sg13 I01 sg14 g3 (g15 g8 NtRp5234 (dp5235 g18 g3 (g19 g5 (ltRp5236 (dp5237 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5238 (dp5239 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5240 (dp5241 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5242 (dp5243 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Initiated by Server' p5244 sg22 I00 sg37 g38 sg39 g5244 sbag3 (g7 g8 NtRp5245 (dp5246 g11 Nsg12 I113 sg13 I01 sg14 g3 (g15 g8 NtRp5247 (dp5248 g18 g3 (g19 g5 (ltRp5249 (dp5250 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5251 (dp5252 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5253 (dp5254 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5255 (dp5256 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Client to Server)' p5257 sg22 I00 sg37 g38 sg39 g5257 sbag3 (g7 g8 NtRp5258 (dp5259 g11 Nsg12 I114 sg13 I01 sg14 g3 (g15 g8 NtRp5260 (dp5261 g18 g3 (g19 g5 (ltRp5262 (dp5263 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5264 (dp5265 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5266 (dp5267 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5268 (dp5269 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Succeeded (Server to Client)' p5270 sg22 I00 sg37 g38 sg39 g5270 sbag3 (g7 g8 NtRp5271 (dp5272 g11 Nsg12 I115 sg13 I01 sg14 g3 (g15 g8 NtRp5273 (dp5274 g18 g3 (g19 g5 (ltRp5275 (dp5276 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5277 (dp5278 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5279 (dp5280 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5281 (dp5282 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Client to Server)' p5283 sg22 I00 sg37 g38 sg39 g5283 sbag3 (g7 g8 NtRp5284 (dp5285 g11 Nsg12 I116 sg13 I01 sg14 g3 (g15 g8 NtRp5286 (dp5287 g18 g3 (g19 g5 (ltRp5288 (dp5289 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5290 (dp5291 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5292 (dp5293 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5294 (dp5295 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Streams Failed (Server to Client)' p5296 sg22 I00 sg37 g38 sg39 g5296 sbag3 (g7 g8 NtRp5297 (dp5298 g11 Nsg12 I117 sg13 I01 sg14 g3 (g15 g8 NtRp5299 (dp5300 g18 g3 (g19 g5 (ltRp5301 (dp5302 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5303 (dp5304 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5305 (dp5306 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5307 (dp5308 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Succeeded' p5309 sg22 I00 sg37 g38 sg39 g5309 sbag3 (g7 g8 NtRp5310 (dp5311 g11 Nsg12 I118 sg13 I01 sg14 g3 (g15 g8 NtRp5312 (dp5313 g18 g3 (g19 g5 (ltRp5314 (dp5315 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5316 (dp5317 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5318 (dp5319 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5320 (dp5321 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connection Upgrade Failed' p5322 sg22 I00 sg37 g38 sg39 g5322 sbag3 (g7 g8 NtRp5323 (dp5324 g11 Nsg12 I119 sg13 I01 sg14 g3 (g15 g8 NtRp5325 (dp5326 g18 g3 (g19 g5 (ltRp5327 (dp5328 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5329 (dp5330 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5331 (dp5332 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5333 (dp5334 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Protocol Error' p5335 sg22 I00 sg37 g38 sg39 g5335 sbag3 (g7 g8 NtRp5336 (dp5337 g11 Nsg12 I120 sg13 I01 sg14 g3 (g15 g8 NtRp5338 (dp5339 g18 g3 (g19 g5 (ltRp5340 (dp5341 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5342 (dp5343 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5344 (dp5345 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5346 (dp5347 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Internal Error' p5348 sg22 I00 sg37 g38 sg39 g5348 sbag3 (g7 g8 NtRp5349 (dp5350 g11 Nsg12 I121 sg13 I01 sg14 g3 (g15 g8 NtRp5351 (dp5352 g18 g3 (g19 g5 (ltRp5353 (dp5354 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5355 (dp5356 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5357 (dp5358 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5359 (dp5360 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Flow Control Error' p5361 sg22 I00 sg37 g38 sg39 g5361 sbag3 (g7 g8 NtRp5362 (dp5363 g11 Nsg12 I122 sg13 I01 sg14 g3 (g15 g8 NtRp5364 (dp5365 g18 g3 (g19 g5 (ltRp5366 (dp5367 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5368 (dp5369 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5370 (dp5371 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5372 (dp5373 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Settings Timeout Error' p5374 sg22 I00 sg37 g38 sg39 g5374 sbag3 (g7 g8 NtRp5375 (dp5376 g11 Nsg12 I123 sg13 I01 sg14 g3 (g15 g8 NtRp5377 (dp5378 g18 g3 (g19 g5 (ltRp5379 (dp5380 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5381 (dp5382 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5383 (dp5384 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5385 (dp5386 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Closed Error' p5387 sg22 I00 sg37 g38 sg39 g5387 sbag3 (g7 g8 NtRp5388 (dp5389 g11 Nsg12 I124 sg13 I01 sg14 g3 (g15 g8 NtRp5390 (dp5391 g18 g3 (g19 g5 (ltRp5392 (dp5393 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5394 (dp5395 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5396 (dp5397 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5398 (dp5399 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Frame Size Error' p5400 sg22 I00 sg37 g38 sg39 g5400 sbag3 (g7 g8 NtRp5401 (dp5402 g11 Nsg12 I125 sg13 I01 sg14 g3 (g15 g8 NtRp5403 (dp5404 g18 g3 (g19 g5 (ltRp5405 (dp5406 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5407 (dp5408 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5409 (dp5410 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5411 (dp5412 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Refused Stream Error' p5413 sg22 I00 sg37 g38 sg39 g5413 sbag3 (g7 g8 NtRp5414 (dp5415 g11 Nsg12 I126 sg13 I01 sg14 g3 (g15 g8 NtRp5416 (dp5417 g18 g3 (g19 g5 (ltRp5418 (dp5419 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5420 (dp5421 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5422 (dp5423 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5424 (dp5425 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Stream Cancelled Error' p5426 sg22 I00 sg37 g38 sg39 g5426 sbag3 (g7 g8 NtRp5427 (dp5428 g11 Nsg12 I127 sg13 I01 sg14 g3 (g15 g8 NtRp5429 (dp5430 g18 g3 (g19 g5 (ltRp5431 (dp5432 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5433 (dp5434 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5435 (dp5436 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5437 (dp5438 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Compression Error' p5439 sg22 I00 sg37 g38 sg39 g5439 sbag3 (g7 g8 NtRp5440 (dp5441 g11 Nsg12 I128 sg13 I01 sg14 g3 (g15 g8 NtRp5442 (dp5443 g18 g3 (g19 g5 (ltRp5444 (dp5445 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5446 (dp5447 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5448 (dp5449 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5450 (dp5451 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Connect Error' p5452 sg22 I00 sg37 g38 sg39 g5452 sbag3 (g7 g8 NtRp5453 (dp5454 g11 Nsg12 I129 sg13 I01 sg14 g3 (g15 g8 NtRp5455 (dp5456 g18 g3 (g19 g5 (ltRp5457 (dp5458 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5459 (dp5460 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5461 (dp5462 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5463 (dp5464 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Enhance Calm Error' p5465 sg22 I00 sg37 g38 sg39 g5465 sbag3 (g7 g8 NtRp5466 (dp5467 g11 Nsg12 I130 sg13 I01 sg14 g3 (g15 g8 NtRp5468 (dp5469 g18 g3 (g19 g5 (ltRp5470 (dp5471 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5472 (dp5473 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5474 (dp5475 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5476 (dp5477 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 Inadequate Security Error' p5478 sg22 I00 sg37 g38 sg39 g5478 sbag3 (g7 g8 NtRp5479 (dp5480 g11 Nsg12 I131 sg13 I01 sg14 g3 (g15 g8 NtRp5481 (dp5482 g18 g3 (g19 g5 (ltRp5483 (dp5484 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5485 (dp5486 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5487 (dp5488 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5489 (dp5490 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'HTTP Client HTTP2.0 HTTP1_1 Required Error' p5491 sg22 I00 sg37 g38 sg39 g5491 sbag3 (g7 g8 NtRp5492 (dp5493 g11 Nsg12 I132 sg13 I01 sg14 g3 (g15 g8 NtRp5494 (dp5495 g18 g3 (g19 g5 (ltRp5496 (dp5497 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5498 (dp5499 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5500 (dp5501 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5502 (dp5503 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received' p5504 sg22 I00 sg37 g38 sg39 g5504 sbag3 (g7 g8 NtRp5505 (dp5506 g11 Nsg12 I133 sg13 I01 sg14 g3 (g15 g8 NtRp5507 (dp5508 g18 g3 (g19 g5 (ltRp5509 (dp5510 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5511 (dp5512 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5513 (dp5514 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5515 (dp5516 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent' p5517 sg22 I00 sg37 g38 sg39 g5517 sbag3 (g7 g8 NtRp5518 (dp5519 g11 Nsg12 I134 sg13 I01 sg14 g3 (g15 g8 NtRp5520 (dp5521 g18 g3 (g19 g5 (ltRp5522 (dp5523 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5524 (dp5525 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5526 (dp5527 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5528 (dp5529 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (close_notify)' p5530 sg22 I00 sg37 g38 sg39 g5530 sbag3 (g7 g8 NtRp5531 (dp5532 g11 Nsg12 I135 sg13 I01 sg14 g3 (g15 g8 NtRp5533 (dp5534 g18 g3 (g19 g5 (ltRp5535 (dp5536 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5537 (dp5538 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5539 (dp5540 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5541 (dp5542 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (close_notify)' p5543 sg22 I00 sg37 g38 sg39 g5543 sbag3 (g7 g8 NtRp5544 (dp5545 g11 Nsg12 I136 sg13 I01 sg14 g3 (g15 g8 NtRp5546 (dp5547 g18 g3 (g19 g5 (ltRp5548 (dp5549 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5550 (dp5551 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5552 (dp5553 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5554 (dp5555 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unexpected_message)' p5556 sg22 I00 sg37 g38 sg39 g5556 sbag3 (g7 g8 NtRp5557 (dp5558 g11 Nsg12 I137 sg13 I01 sg14 g3 (g15 g8 NtRp5559 (dp5560 g18 g3 (g19 g5 (ltRp5561 (dp5562 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5563 (dp5564 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5565 (dp5566 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5567 (dp5568 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unexpected_message)' p5569 sg22 I00 sg37 g38 sg39 g5569 sbag3 (g7 g8 NtRp5570 (dp5571 g11 Nsg12 I138 sg13 I01 sg14 g3 (g15 g8 NtRp5572 (dp5573 g18 g3 (g19 g5 (ltRp5574 (dp5575 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5576 (dp5577 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5578 (dp5579 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5580 (dp5581 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_record_mac)' p5582 sg22 I00 sg37 g38 sg39 g5582 sbag3 (g7 g8 NtRp5583 (dp5584 g11 Nsg12 I139 sg13 I01 sg14 g3 (g15 g8 NtRp5585 (dp5586 g18 g3 (g19 g5 (ltRp5587 (dp5588 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5589 (dp5590 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5591 (dp5592 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5593 (dp5594 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_record_mac)' p5595 sg22 I00 sg37 g38 sg39 g5595 sbag3 (g7 g8 NtRp5596 (dp5597 g11 Nsg12 I140 sg13 I01 sg14 g3 (g15 g8 NtRp5598 (dp5599 g18 g3 (g19 g5 (ltRp5600 (dp5601 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5602 (dp5603 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5604 (dp5605 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5606 (dp5607 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decryption_failed)' p5608 sg22 I00 sg37 g38 sg39 g5608 sbag3 (g7 g8 NtRp5609 (dp5610 g11 Nsg12 I141 sg13 I01 sg14 g3 (g15 g8 NtRp5611 (dp5612 g18 g3 (g19 g5 (ltRp5613 (dp5614 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5615 (dp5616 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5617 (dp5618 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5619 (dp5620 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decryption_failed)' p5621 sg22 I00 sg37 g38 sg39 g5621 sbag3 (g7 g8 NtRp5622 (dp5623 g11 Nsg12 I142 sg13 I01 sg14 g3 (g15 g8 NtRp5624 (dp5625 g18 g3 (g19 g5 (ltRp5626 (dp5627 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5628 (dp5629 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5630 (dp5631 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5632 (dp5633 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (record_overflow)' p5634 sg22 I00 sg37 g38 sg39 g5634 sbag3 (g7 g8 NtRp5635 (dp5636 g11 Nsg12 I143 sg13 I01 sg14 g3 (g15 g8 NtRp5637 (dp5638 g18 g3 (g19 g5 (ltRp5639 (dp5640 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5641 (dp5642 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5643 (dp5644 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5645 (dp5646 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (record_overflow)' p5647 sg22 I00 sg37 g38 sg39 g5647 sbag3 (g7 g8 NtRp5648 (dp5649 g11 Nsg12 I144 sg13 I01 sg14 g3 (g15 g8 NtRp5650 (dp5651 g18 g3 (g19 g5 (ltRp5652 (dp5653 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5654 (dp5655 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5656 (dp5657 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5658 (dp5659 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decompression_failure)' p5660 sg22 I00 sg37 g38 sg39 g5660 sbag3 (g7 g8 NtRp5661 (dp5662 g11 Nsg12 I145 sg13 I01 sg14 g3 (g15 g8 NtRp5663 (dp5664 g18 g3 (g19 g5 (ltRp5665 (dp5666 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5667 (dp5668 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5669 (dp5670 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5671 (dp5672 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decompression_failure)' p5673 sg22 I00 sg37 g38 sg39 g5673 sbag3 (g7 g8 NtRp5674 (dp5675 g11 Nsg12 I146 sg13 I01 sg14 g3 (g15 g8 NtRp5676 (dp5677 g18 g3 (g19 g5 (ltRp5678 (dp5679 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5680 (dp5681 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5682 (dp5683 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5684 (dp5685 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (handshake_failure)' p5686 sg22 I00 sg37 g38 sg39 g5686 sbag3 (g7 g8 NtRp5687 (dp5688 g11 Nsg12 I147 sg13 I01 sg14 g3 (g15 g8 NtRp5689 (dp5690 g18 g3 (g19 g5 (ltRp5691 (dp5692 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5693 (dp5694 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5695 (dp5696 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5697 (dp5698 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (handshake_failure)' p5699 sg22 I00 sg37 g38 sg39 g5699 sbag3 (g7 g8 NtRp5700 (dp5701 g11 Nsg12 I148 sg13 I01 sg14 g3 (g15 g8 NtRp5702 (dp5703 g18 g3 (g19 g5 (ltRp5704 (dp5705 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5706 (dp5707 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5708 (dp5709 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5710 (dp5711 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_certificate)' p5712 sg22 I00 sg37 g38 sg39 g5712 sbag3 (g7 g8 NtRp5713 (dp5714 g11 Nsg12 I149 sg13 I01 sg14 g3 (g15 g8 NtRp5715 (dp5716 g18 g3 (g19 g5 (ltRp5717 (dp5718 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5719 (dp5720 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5721 (dp5722 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5723 (dp5724 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_certificate)' p5725 sg22 I00 sg37 g38 sg39 g5725 sbag3 (g7 g8 NtRp5726 (dp5727 g11 Nsg12 I150 sg13 I01 sg14 g3 (g15 g8 NtRp5728 (dp5729 g18 g3 (g19 g5 (ltRp5730 (dp5731 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5732 (dp5733 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5734 (dp5735 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5736 (dp5737 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (bad_certificate)' p5738 sg22 I00 sg37 g38 sg39 g5738 sbag3 (g7 g8 NtRp5739 (dp5740 g11 Nsg12 I151 sg13 I01 sg14 g3 (g15 g8 NtRp5741 (dp5742 g18 g3 (g19 g5 (ltRp5743 (dp5744 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5745 (dp5746 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5747 (dp5748 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5749 (dp5750 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (bad_certificate)' p5751 sg22 I00 sg37 g38 sg39 g5751 sbag3 (g7 g8 NtRp5752 (dp5753 g11 Nsg12 I152 sg13 I01 sg14 g3 (g15 g8 NtRp5754 (dp5755 g18 g3 (g19 g5 (ltRp5756 (dp5757 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5758 (dp5759 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5760 (dp5761 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5762 (dp5763 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unsupported_certificate)' p5764 sg22 I00 sg37 g38 sg39 g5764 sbag3 (g7 g8 NtRp5765 (dp5766 g11 Nsg12 I153 sg13 I01 sg14 g3 (g15 g8 NtRp5767 (dp5768 g18 g3 (g19 g5 (ltRp5769 (dp5770 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5771 (dp5772 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5773 (dp5774 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5775 (dp5776 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unsupported_certificate)' p5777 sg22 I00 sg37 g38 sg39 g5777 sbag3 (g7 g8 NtRp5778 (dp5779 g11 Nsg12 I154 sg13 I01 sg14 g3 (g15 g8 NtRp5780 (dp5781 g18 g3 (g19 g5 (ltRp5782 (dp5783 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5784 (dp5785 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5786 (dp5787 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5788 (dp5789 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_revoked)' p5790 sg22 I00 sg37 g38 sg39 g5790 sbag3 (g7 g8 NtRp5791 (dp5792 g11 Nsg12 I155 sg13 I01 sg14 g3 (g15 g8 NtRp5793 (dp5794 g18 g3 (g19 g5 (ltRp5795 (dp5796 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5797 (dp5798 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5799 (dp5800 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5801 (dp5802 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_revoked)' p5803 sg22 I00 sg37 g38 sg39 g5803 sbag3 (g7 g8 NtRp5804 (dp5805 g11 Nsg12 I156 sg13 I01 sg14 g3 (g15 g8 NtRp5806 (dp5807 g18 g3 (g19 g5 (ltRp5808 (dp5809 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5810 (dp5811 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5812 (dp5813 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5814 (dp5815 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_expired)' p5816 sg22 I00 sg37 g38 sg39 g5816 sbag3 (g7 g8 NtRp5817 (dp5818 g11 Nsg12 I157 sg13 I01 sg14 g3 (g15 g8 NtRp5819 (dp5820 g18 g3 (g19 g5 (ltRp5821 (dp5822 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5823 (dp5824 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5825 (dp5826 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5827 (dp5828 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_expired)' p5829 sg22 I00 sg37 g38 sg39 g5829 sbag3 (g7 g8 NtRp5830 (dp5831 g11 Nsg12 I158 sg13 I01 sg14 g3 (g15 g8 NtRp5832 (dp5833 g18 g3 (g19 g5 (ltRp5834 (dp5835 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5836 (dp5837 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5838 (dp5839 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5840 (dp5841 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (certificate_unknown)' p5842 sg22 I00 sg37 g38 sg39 g5842 sbag3 (g7 g8 NtRp5843 (dp5844 g11 Nsg12 I159 sg13 I01 sg14 g3 (g15 g8 NtRp5845 (dp5846 g18 g3 (g19 g5 (ltRp5847 (dp5848 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5849 (dp5850 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5851 (dp5852 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5853 (dp5854 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (certificate_unknown)' p5855 sg22 I00 sg37 g38 sg39 g5855 sbag3 (g7 g8 NtRp5856 (dp5857 g11 Nsg12 I160 sg13 I01 sg14 g3 (g15 g8 NtRp5858 (dp5859 g18 g3 (g19 g5 (ltRp5860 (dp5861 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5862 (dp5863 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5864 (dp5865 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5866 (dp5867 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (illegal_parameter)' p5868 sg22 I00 sg37 g38 sg39 g5868 sbag3 (g7 g8 NtRp5869 (dp5870 g11 Nsg12 I161 sg13 I01 sg14 g3 (g15 g8 NtRp5871 (dp5872 g18 g3 (g19 g5 (ltRp5873 (dp5874 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5875 (dp5876 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5877 (dp5878 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5879 (dp5880 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (illegal_parameter)' p5881 sg22 I00 sg37 g38 sg39 g5881 sbag3 (g7 g8 NtRp5882 (dp5883 g11 Nsg12 I162 sg13 I01 sg14 g3 (g15 g8 NtRp5884 (dp5885 g18 g3 (g19 g5 (ltRp5886 (dp5887 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5888 (dp5889 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5890 (dp5891 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5892 (dp5893 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unknown_ca)' p5894 sg22 I00 sg37 g38 sg39 g5894 sbag3 (g7 g8 NtRp5895 (dp5896 g11 Nsg12 I163 sg13 I01 sg14 g3 (g15 g8 NtRp5897 (dp5898 g18 g3 (g19 g5 (ltRp5899 (dp5900 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5901 (dp5902 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5903 (dp5904 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5905 (dp5906 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (unknown_ca)' p5907 sg22 I00 sg37 g38 sg39 g5907 sbag3 (g7 g8 NtRp5908 (dp5909 g11 Nsg12 I164 sg13 I01 sg14 g3 (g15 g8 NtRp5910 (dp5911 g18 g3 (g19 g5 (ltRp5912 (dp5913 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5914 (dp5915 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5916 (dp5917 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5918 (dp5919 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (access_denied)' p5920 sg22 I00 sg37 g38 sg39 g5920 sbag3 (g7 g8 NtRp5921 (dp5922 g11 Nsg12 I165 sg13 I01 sg14 g3 (g15 g8 NtRp5923 (dp5924 g18 g3 (g19 g5 (ltRp5925 (dp5926 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5927 (dp5928 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5929 (dp5930 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5931 (dp5932 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (access_denied)' p5933 sg22 I00 sg37 g38 sg39 g5933 sbag3 (g7 g8 NtRp5934 (dp5935 g11 Nsg12 I166 sg13 I01 sg14 g3 (g15 g8 NtRp5936 (dp5937 g18 g3 (g19 g5 (ltRp5938 (dp5939 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5940 (dp5941 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5942 (dp5943 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5944 (dp5945 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decode_error)' p5946 sg22 I00 sg37 g38 sg39 g5946 sbag3 (g7 g8 NtRp5947 (dp5948 g11 Nsg12 I167 sg13 I01 sg14 g3 (g15 g8 NtRp5949 (dp5950 g18 g3 (g19 g5 (ltRp5951 (dp5952 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5953 (dp5954 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5955 (dp5956 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5957 (dp5958 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decode_error)' p5959 sg22 I00 sg37 g38 sg39 g5959 sbag3 (g7 g8 NtRp5960 (dp5961 g11 Nsg12 I168 sg13 I01 sg14 g3 (g15 g8 NtRp5962 (dp5963 g18 g3 (g19 g5 (ltRp5964 (dp5965 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5966 (dp5967 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5968 (dp5969 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5970 (dp5971 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (decrypt_error)' p5972 sg22 I00 sg37 g38 sg39 g5972 sbag3 (g7 g8 NtRp5973 (dp5974 g11 Nsg12 I169 sg13 I01 sg14 g3 (g15 g8 NtRp5975 (dp5976 g18 g3 (g19 g5 (ltRp5977 (dp5978 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5979 (dp5980 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5981 (dp5982 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5983 (dp5984 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (decrypt_error)' p5985 sg22 I00 sg37 g38 sg39 g5985 sbag3 (g7 g8 NtRp5986 (dp5987 g11 Nsg12 I170 sg13 I01 sg14 g3 (g15 g8 NtRp5988 (dp5989 g18 g3 (g19 g5 (ltRp5990 (dp5991 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp5992 (dp5993 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp5994 (dp5995 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp5996 (dp5997 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (export_restriction)' p5998 sg22 I00 sg37 g38 sg39 g5998 sbag3 (g7 g8 NtRp5999 (dp6000 g11 Nsg12 I171 sg13 I01 sg14 g3 (g15 g8 NtRp6001 (dp6002 g18 g3 (g19 g5 (ltRp6003 (dp6004 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6005 (dp6006 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6007 (dp6008 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6009 (dp6010 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (export_restriction)' p6011 sg22 I00 sg37 g38 sg39 g6011 sbag3 (g7 g8 NtRp6012 (dp6013 g11 Nsg12 I172 sg13 I01 sg14 g3 (g15 g8 NtRp6014 (dp6015 g18 g3 (g19 g5 (ltRp6016 (dp6017 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6018 (dp6019 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6020 (dp6021 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6022 (dp6023 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (protocol_version)' p6024 sg22 I00 sg37 g38 sg39 g6024 sbag3 (g7 g8 NtRp6025 (dp6026 g11 Nsg12 I173 sg13 I01 sg14 g3 (g15 g8 NtRp6027 (dp6028 g18 g3 (g19 g5 (ltRp6029 (dp6030 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6031 (dp6032 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6033 (dp6034 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6035 (dp6036 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (protocol_version)' p6037 sg22 I00 sg37 g38 sg39 g6037 sbag3 (g7 g8 NtRp6038 (dp6039 g11 Nsg12 I174 sg13 I01 sg14 g3 (g15 g8 NtRp6040 (dp6041 g18 g3 (g19 g5 (ltRp6042 (dp6043 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6044 (dp6045 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6046 (dp6047 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6048 (dp6049 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (insufficient_security)' p6050 sg22 I00 sg37 g38 sg39 g6050 sbag3 (g7 g8 NtRp6051 (dp6052 g11 Nsg12 I175 sg13 I01 sg14 g3 (g15 g8 NtRp6053 (dp6054 g18 g3 (g19 g5 (ltRp6055 (dp6056 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6057 (dp6058 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6059 (dp6060 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6061 (dp6062 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (insufficient_security)' p6063 sg22 I00 sg37 g38 sg39 g6063 sbag3 (g7 g8 NtRp6064 (dp6065 g11 Nsg12 I176 sg13 I01 sg14 g3 (g15 g8 NtRp6066 (dp6067 g18 g3 (g19 g5 (ltRp6068 (dp6069 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6070 (dp6071 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6072 (dp6073 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6074 (dp6075 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (internal_error)' p6076 sg22 I00 sg37 g38 sg39 g6076 sbag3 (g7 g8 NtRp6077 (dp6078 g11 Nsg12 I177 sg13 I01 sg14 g3 (g15 g8 NtRp6079 (dp6080 g18 g3 (g19 g5 (ltRp6081 (dp6082 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6083 (dp6084 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6085 (dp6086 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6087 (dp6088 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (internal_error)' p6089 sg22 I00 sg37 g38 sg39 g6089 sbag3 (g7 g8 NtRp6090 (dp6091 g11 Nsg12 I178 sg13 I01 sg14 g3 (g15 g8 NtRp6092 (dp6093 g18 g3 (g19 g5 (ltRp6094 (dp6095 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6096 (dp6097 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6098 (dp6099 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6100 (dp6101 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (user_canceled)' p6102 sg22 I00 sg37 g38 sg39 g6102 sbag3 (g7 g8 NtRp6103 (dp6104 g11 Nsg12 I179 sg13 I01 sg14 g3 (g15 g8 NtRp6105 (dp6106 g18 g3 (g19 g5 (ltRp6107 (dp6108 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6109 (dp6110 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6111 (dp6112 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6113 (dp6114 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (user_canceled)' p6115 sg22 I00 sg37 g38 sg39 g6115 sbag3 (g7 g8 NtRp6116 (dp6117 g11 Nsg12 I180 sg13 I01 sg14 g3 (g15 g8 NtRp6118 (dp6119 g18 g3 (g19 g5 (ltRp6120 (dp6121 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6122 (dp6123 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6124 (dp6125 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6126 (dp6127 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (no_renegotiation)' p6128 sg22 I00 sg37 g38 sg39 g6128 sbag3 (g7 g8 NtRp6129 (dp6130 g11 Nsg12 I181 sg13 I01 sg14 g3 (g15 g8 NtRp6131 (dp6132 g18 g3 (g19 g5 (ltRp6133 (dp6134 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6135 (dp6136 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6137 (dp6138 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6139 (dp6140 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Sent (no_renegotiation)' p6141 sg22 I00 sg37 g38 sg39 g6141 sbag3 (g7 g8 NtRp6142 (dp6143 g11 Nsg12 I182 sg13 I01 sg14 g3 (g15 g8 NtRp6144 (dp6145 g18 g3 (g19 g5 (ltRp6146 (dp6147 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6148 (dp6149 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6150 (dp6151 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6152 (dp6153 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (undefined error)' p6154 sg22 I00 sg37 g38 sg39 g6154 sbag3 (g7 g8 NtRp6155 (dp6156 g11 Nsg12 I183 sg13 I01 sg14 g3 (g15 g8 NtRp6157 (dp6158 g18 g3 (g19 g5 (ltRp6159 (dp6160 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6161 (dp6162 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6163 (dp6164 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6165 (dp6166 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (undefined error)' p6167 sg22 I00 sg37 g38 sg39 g6167 sbag3 (g7 g8 NtRp6168 (dp6169 g11 Nsg12 I184 sg13 I01 sg14 g3 (g15 g8 NtRp6170 (dp6171 g18 g3 (g19 g5 (ltRp6172 (dp6173 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6174 (dp6175 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6176 (dp6177 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6178 (dp6179 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no cipher)' p6180 sg22 I00 sg37 g38 sg39 g6180 sbag3 (g7 g8 NtRp6181 (dp6182 g11 Nsg12 I185 sg13 I01 sg14 g3 (g15 g8 NtRp6183 (dp6184 g18 g3 (g19 g5 (ltRp6185 (dp6186 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6187 (dp6188 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6189 (dp6190 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6191 (dp6192 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no cipher)' p6193 sg22 I00 sg37 g38 sg39 g6193 sbag3 (g7 g8 NtRp6194 (dp6195 g11 Nsg12 I186 sg13 I01 sg14 g3 (g15 g8 NtRp6196 (dp6197 g18 g3 (g19 g5 (ltRp6198 (dp6199 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6200 (dp6201 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6202 (dp6203 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6204 (dp6205 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (no certificate)' p6206 sg22 I00 sg37 g38 sg39 g6206 sbag3 (g7 g8 NtRp6207 (dp6208 g11 Nsg12 I187 sg13 I01 sg14 g3 (g15 g8 NtRp6209 (dp6210 g18 g3 (g19 g5 (ltRp6211 (dp6212 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6213 (dp6214 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6215 (dp6216 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6217 (dp6218 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (no certificate)' p6219 sg22 I00 sg37 g38 sg39 g6219 sbag3 (g7 g8 NtRp6220 (dp6221 g11 Nsg12 I188 sg13 I01 sg14 g3 (g15 g8 NtRp6222 (dp6223 g18 g3 (g19 g5 (ltRp6224 (dp6225 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6226 (dp6227 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6228 (dp6229 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6230 (dp6231 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (bad certificate)' p6232 sg22 I00 sg37 g38 sg39 g6232 sbag3 (g7 g8 NtRp6233 (dp6234 g11 Nsg12 I189 sg13 I01 sg14 g3 (g15 g8 NtRp6235 (dp6236 g18 g3 (g19 g5 (ltRp6237 (dp6238 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6239 (dp6240 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6241 (dp6242 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6243 (dp6244 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (bad certificate)' p6245 sg22 I00 sg37 g38 sg39 g6245 sbag3 (g7 g8 NtRp6246 (dp6247 g11 Nsg12 I190 sg13 I01 sg14 g3 (g15 g8 NtRp6248 (dp6249 g18 g3 (g19 g5 (ltRp6250 (dp6251 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6252 (dp6253 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6254 (dp6255 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6256 (dp6257 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received (unsupported certificate)' p6258 sg22 I00 sg37 g38 sg39 g6258 sbag3 (g7 g8 NtRp6259 (dp6260 g11 Nsg12 I191 sg13 I01 sg14 g3 (g15 g8 NtRp6261 (dp6262 g18 g3 (g19 g5 (ltRp6263 (dp6264 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6265 (dp6266 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6267 (dp6268 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6269 (dp6270 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent (unsupported certificate)' p6271 sg22 I00 sg37 g38 sg39 g6271 sbag3 (g7 g8 NtRp6272 (dp6273 g11 Nsg12 I192 sg13 I01 sg14 g3 (g15 g8 NtRp6274 (dp6275 g18 g3 (g19 g5 (ltRp6276 (dp6277 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6278 (dp6279 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6280 (dp6281 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6282 (dp6283 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Received' p6284 sg22 I00 sg37 g38 sg39 g6284 sbag3 (g7 g8 NtRp6285 (dp6286 g11 Nsg12 I193 sg13 I01 sg14 g3 (g15 g8 NtRp6287 (dp6288 g18 g3 (g19 g5 (ltRp6289 (dp6290 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6291 (dp6292 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6293 (dp6294 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6295 (dp6296 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Errors Sent' p6297 sg22 I00 sg37 g38 sg39 g6297 sbag3 (g7 g8 NtRp6298 (dp6299 g11 Nsg12 I194 sg13 I01 sg14 g3 (g15 g8 NtRp6300 (dp6301 g18 g3 (g19 g5 (ltRp6302 (dp6303 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6304 (dp6305 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6306 (dp6307 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6308 (dp6309 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Sent' p6310 sg22 I00 sg37 g38 sg39 g6310 sbag3 (g7 g8 NtRp6311 (dp6312 g11 Nsg12 I195 sg13 I01 sg14 g3 (g15 g8 NtRp6313 (dp6314 g18 g3 (g19 g5 (ltRp6315 (dp6316 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6317 (dp6318 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6319 (dp6320 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6321 (dp6322 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Client Hello Received' p6323 sg22 I00 sg37 g38 sg39 g6323 sbag3 (g7 g8 NtRp6324 (dp6325 g11 Nsg12 I196 sg13 I01 sg14 g3 (g15 g8 NtRp6326 (dp6327 g18 g3 (g19 g5 (ltRp6328 (dp6329 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6330 (dp6331 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6332 (dp6333 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6334 (dp6335 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Sent' p6336 sg22 I00 sg37 g38 sg39 g6336 sbag3 (g7 g8 NtRp6337 (dp6338 g11 Nsg12 I197 sg13 I01 sg14 g3 (g15 g8 NtRp6339 (dp6340 g18 g3 (g19 g5 (ltRp6341 (dp6342 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6343 (dp6344 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6345 (dp6346 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6347 (dp6348 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Server Hello Received' p6349 sg22 I00 sg37 g38 sg39 g6349 sbag3 (g7 g8 NtRp6350 (dp6351 g11 Nsg12 I198 sg13 I01 sg14 g3 (g15 g8 NtRp6352 (dp6353 g18 g3 (g19 g5 (ltRp6354 (dp6355 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6356 (dp6357 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6358 (dp6359 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6360 (dp6361 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Sent' p6362 sg22 I00 sg37 g38 sg39 g6362 sbag3 (g7 g8 NtRp6363 (dp6364 g11 Nsg12 I199 sg13 I01 sg14 g3 (g15 g8 NtRp6365 (dp6366 g18 g3 (g19 g5 (ltRp6367 (dp6368 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6369 (dp6370 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6371 (dp6372 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6373 (dp6374 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'Hello Requests Received' p6375 sg22 I00 sg37 g38 sg39 g6375 sbag3 (g7 g8 NtRp6376 (dp6377 g11 Nsg12 I200 sg13 I01 sg14 g3 (g15 g8 NtRp6378 (dp6379 g18 g3 (g19 g5 (ltRp6380 (dp6381 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6382 (dp6383 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6384 (dp6385 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6386 (dp6387 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Success' p6388 sg22 I00 sg37 g38 sg39 g6388 sbag3 (g7 g8 NtRp6389 (dp6390 g11 Nsg12 I201 sg13 I01 sg14 g3 (g15 g8 NtRp6391 (dp6392 g18 g3 (g19 g5 (ltRp6393 (dp6394 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6395 (dp6396 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6397 (dp6398 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6399 (dp6400 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Session Reuse Failed' p6401 sg22 I00 sg37 g38 sg39 g6401 sbag3 (g7 g8 NtRp6402 (dp6403 g11 Nsg12 I202 sg13 I01 sg14 g3 (g15 g8 NtRp6404 (dp6405 g18 g3 (g19 g5 (ltRp6406 (dp6407 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6408 (dp6409 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6410 (dp6411 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6412 (dp6413 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Concurrent Sessions' p6414 sg22 I00 sg37 g38 sg39 g6414 sbag3 (g7 g8 NtRp6415 (dp6416 g11 Nsg12 I203 sg13 I01 sg14 g3 (g15 g8 NtRp6417 (dp6418 g18 g3 (g19 g5 (ltRp6419 (dp6420 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6421 (dp6422 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6423 (dp6424 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6425 (dp6426 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Sent' p6427 sg22 I00 sg37 g38 sg39 g6427 sbag3 (g7 g8 NtRp6428 (dp6429 g11 Nsg12 I204 sg13 I01 sg14 g3 (g15 g8 NtRp6430 (dp6431 g18 g3 (g19 g5 (ltRp6432 (dp6433 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6434 (dp6435 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6436 (dp6437 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6438 (dp6439 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Bytes Received' p6440 sg22 I00 sg37 g38 sg39 g6440 sbag3 (g7 g8 NtRp6441 (dp6442 g11 Nsg12 I205 sg13 I01 sg14 g3 (g15 g8 NtRp6443 (dp6444 g18 g3 (g19 g5 (ltRp6445 (dp6446 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6447 (dp6448 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6449 (dp6450 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6451 (dp6452 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Throughput Bytes' p6453 sg22 I00 sg37 g38 sg39 g6453 sbag3 (g7 g8 NtRp6454 (dp6455 g11 Nsg12 I206 sg13 I01 sg14 g3 (g15 g8 NtRp6456 (dp6457 g18 g3 (g19 g5 (ltRp6458 (dp6459 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6460 (dp6461 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6462 (dp6463 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6464 (dp6465 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Application Data Bytes' p6466 sg22 I00 sg37 g38 sg39 g6466 sbag3 (g7 g8 NtRp6467 (dp6468 g11 Nsg12 I207 sg13 I01 sg14 g3 (g15 g8 NtRp6469 (dp6470 g18 g3 (g19 g5 (ltRp6471 (dp6472 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6473 (dp6474 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6475 (dp6476 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6477 (dp6478 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Validation Failure' p6479 sg22 I00 sg37 g38 sg39 g6479 sbag3 (g7 g8 NtRp6480 (dp6481 g11 Nsg12 I208 sg13 I01 sg14 g3 (g15 g8 NtRp6482 (dp6483 g18 g3 (g19 g5 (ltRp6484 (dp6485 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6486 (dp6487 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6488 (dp6489 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6490 (dp6491 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate Self Signed' p6492 sg22 I00 sg37 g38 sg39 g6492 sbag3 (g7 g8 NtRp6493 (dp6494 g11 Nsg12 I209 sg13 I01 sg14 g3 (g15 g8 NtRp6495 (dp6496 g18 g3 (g19 g5 (ltRp6497 (dp6498 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6499 (dp6500 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6501 (dp6502 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6503 (dp6504 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Certificate CA Signed' p6505 sg22 I00 sg37 g38 sg39 g6505 sbag3 (g7 g8 NtRp6506 (dp6507 g11 Nsg12 I210 sg13 I01 sg14 g3 (g15 g8 NtRp6508 (dp6509 g18 g3 (g19 g5 (ltRp6510 (dp6511 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6512 (dp6513 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6514 (dp6515 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6516 (dp6517 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Alerts Received (unrecognized name)' p6518 sg22 I00 sg37 g38 sg39 g6518 sbag3 (g7 g8 NtRp6519 (dp6520 g11 Nsg12 I211 sg13 I01 sg14 g3 (g15 g8 NtRp6521 (dp6522 g18 g3 (g19 g5 (ltRp6523 (dp6524 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6525 (dp6526 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6527 (dp6528 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6529 (dp6530 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension sent successfully' p6531 sg22 I00 sg37 g38 sg39 g6531 sbag3 (g7 g8 NtRp6532 (dp6533 g11 Nsg12 I212 sg13 I01 sg14 g3 (g15 g8 NtRp6534 (dp6535 g18 g3 (g19 g5 (ltRp6536 (dp6537 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6538 (dp6539 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6540 (dp6541 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6542 (dp6543 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL SNI extension mismatch' p6544 sg22 I00 sg37 g38 sg39 g6544 sbag3 (g7 g8 NtRp6545 (dp6546 g11 Nsg12 I213 sg13 I01 sg14 g3 (g15 g8 NtRp6547 (dp6548 g18 g3 (g19 g5 (ltRp6549 (dp6550 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6551 (dp6552 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6553 (dp6554 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6555 (dp6556 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse success' p6557 sg22 I00 sg37 g38 sg39 g6557 sbag3 (g7 g8 NtRp6558 (dp6559 g11 Nsg12 I214 sg13 I01 sg14 g3 (g15 g8 NtRp6560 (dp6561 g18 g3 (g19 g5 (ltRp6562 (dp6563 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6564 (dp6565 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6566 (dp6567 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6568 (dp6569 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL session ticket reuse failure' p6570 sg22 I00 sg37 g38 sg39 g6570 sbag3 (g7 g8 NtRp6571 (dp6572 g11 Nsg12 I215 sg13 I01 sg14 g3 (g15 g8 NtRp6573 (dp6574 g18 g3 (g19 g5 (ltRp6575 (dp6576 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6577 (dp6578 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6579 (dp6580 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6581 (dp6582 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfully' p6583 sg22 I00 sg37 g38 sg39 g6583 sbag3 (g7 g8 NtRp6584 (dp6585 g11 Nsg12 I216 sg13 I01 sg14 g3 (g15 g8 NtRp6586 (dp6587 g18 g3 (g19 g5 (ltRp6588 (dp6589 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6590 (dp6591 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6592 (dp6593 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6594 (dp6595 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'SSL Negotiation Finished Successfuly' p6596 sg22 I00 sg37 g38 sg39 g6596 sbag3 (g7 g8 NtRp6597 (dp6598 g11 Nsg12 I217 sg13 I01 sg14 g3 (g15 g8 NtRp6599 (dp6600 g18 g3 (g19 g5 (ltRp6601 (dp6602 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6603 (dp6604 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6605 (dp6606 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6607 (dp6608 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Sent' p6609 sg22 I00 sg37 g38 sg39 g6609 sbag3 (g7 g8 NtRp6610 (dp6611 g11 Nsg12 I218 sg13 I01 sg14 g3 (g15 g8 NtRp6612 (dp6613 g18 g3 (g19 g5 (ltRp6614 (dp6615 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6616 (dp6617 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6618 (dp6619 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6620 (dp6621 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN_SYN-ACK Received' p6622 sg22 I00 sg37 g38 sg39 g6622 sbag3 (g7 g8 NtRp6623 (dp6624 g11 Nsg12 I219 sg13 I01 sg14 g3 (g15 g8 NtRp6625 (dp6626 g18 g3 (g19 g5 (ltRp6627 (dp6628 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6629 (dp6630 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6631 (dp6632 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6633 (dp6634 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN Failed' p6635 sg22 I00 sg37 g38 sg39 g6635 sbag3 (g7 g8 NtRp6636 (dp6637 g11 Nsg12 I220 sg13 I01 sg14 g3 (g15 g8 NtRp6638 (dp6639 g18 g3 (g19 g5 (ltRp6640 (dp6641 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6642 (dp6643 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6644 (dp6645 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6646 (dp6647 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP SYN-ACK Sent' p6648 sg22 I00 sg37 g38 sg39 g6648 sbag3 (g7 g8 NtRp6649 (dp6650 g11 Nsg12 I221 sg13 I01 sg14 g3 (g15 g8 NtRp6651 (dp6652 g18 g3 (g19 g5 (ltRp6653 (dp6654 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6655 (dp6656 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6657 (dp6658 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6659 (dp6660 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connection Requests Failed' p6661 sg22 I00 sg37 g38 sg39 g6661 sbag3 (g7 g8 NtRp6662 (dp6663 g11 Nsg12 I222 sg13 I01 sg14 g3 (g15 g8 NtRp6664 (dp6665 g18 g3 (g19 g5 (ltRp6666 (dp6667 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6668 (dp6669 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6670 (dp6671 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6672 (dp6673 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections Established' p6674 sg22 I00 sg37 g38 sg39 g6674 sbag3 (g7 g8 NtRp6675 (dp6676 g11 Nsg12 I223 sg13 I01 sg14 g3 (g15 g8 NtRp6677 (dp6678 g18 g3 (g19 g5 (ltRp6679 (dp6680 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6681 (dp6682 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6683 (dp6684 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6685 (dp6686 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Sent' p6687 sg22 I00 sg37 g38 sg39 g6687 sbag3 (g7 g8 NtRp6688 (dp6689 g11 Nsg12 I224 sg13 I01 sg14 g3 (g15 g8 NtRp6690 (dp6691 g18 g3 (g19 g5 (ltRp6692 (dp6693 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6694 (dp6695 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6696 (dp6697 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6698 (dp6699 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN Received' p6700 sg22 I00 sg37 g38 sg39 g6700 sbag3 (g7 g8 NtRp6701 (dp6702 g11 Nsg12 I225 sg13 I01 sg14 g3 (g15 g8 NtRp6703 (dp6704 g18 g3 (g19 g5 (ltRp6705 (dp6706 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6707 (dp6708 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6709 (dp6710 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6711 (dp6712 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Sent' p6713 sg22 I00 sg37 g38 sg39 g6713 sbag3 (g7 g8 NtRp6714 (dp6715 g11 Nsg12 I226 sg13 I01 sg14 g3 (g15 g8 NtRp6716 (dp6717 g18 g3 (g19 g5 (ltRp6718 (dp6719 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6720 (dp6721 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6722 (dp6723 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6724 (dp6725 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP FIN-ACK Received' p6726 sg22 I00 sg37 g38 sg39 g6726 sbag3 (g7 g8 NtRp6727 (dp6728 g11 Nsg12 I227 sg13 I01 sg14 g3 (g15 g8 NtRp6729 (dp6730 g18 g3 (g19 g5 (ltRp6731 (dp6732 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6733 (dp6734 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6735 (dp6736 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6737 (dp6738 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Sent' p6739 sg22 I00 sg37 g38 sg39 g6739 sbag3 (g7 g8 NtRp6740 (dp6741 g11 Nsg12 I228 sg13 I01 sg14 g3 (g15 g8 NtRp6742 (dp6743 g18 g3 (g19 g5 (ltRp6744 (dp6745 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6746 (dp6747 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6748 (dp6749 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6750 (dp6751 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Resets Received' p6752 sg22 I00 sg37 g38 sg39 g6752 sbag3 (g7 g8 NtRp6753 (dp6754 g11 Nsg12 I229 sg13 I01 sg14 g3 (g15 g8 NtRp6755 (dp6756 g18 g3 (g19 g5 (ltRp6757 (dp6758 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6759 (dp6760 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6761 (dp6762 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6763 (dp6764 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Retries' p6765 sg22 I00 sg37 g38 sg39 g6765 sbag3 (g7 g8 NtRp6766 (dp6767 g11 Nsg12 I230 sg13 I01 sg14 g3 (g15 g8 NtRp6768 (dp6769 g18 g3 (g19 g5 (ltRp6770 (dp6771 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6772 (dp6773 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6774 (dp6775 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6776 (dp6777 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Timeouts' p6778 sg22 I00 sg37 g38 sg39 g6778 sbag3 (g7 g8 NtRp6779 (dp6780 g11 Nsg12 I231 sg13 I01 sg14 g3 (g15 g8 NtRp6781 (dp6782 g18 g3 (g19 g5 (ltRp6783 (dp6784 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6785 (dp6786 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6787 (dp6788 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6789 (dp6790 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Accept Queue Entries' p6791 sg22 I00 sg37 g38 sg39 g6791 sbag3 (g7 g8 NtRp6792 (dp6793 g11 Nsg12 I232 sg13 I01 sg14 g3 (g15 g8 NtRp6794 (dp6795 g18 g3 (g19 g5 (ltRp6796 (dp6797 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6798 (dp6799 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6800 (dp6801 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6802 (dp6803 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Listen Queue Drops' p6804 sg22 I00 sg37 g38 sg39 g6804 sbag3 (g7 g8 NtRp6805 (dp6806 g11 Nsg12 I233 sg13 I01 sg14 g3 (g15 g8 NtRp6807 (dp6808 g18 g3 (g19 g5 (ltRp6809 (dp6810 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6811 (dp6812 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6813 (dp6814 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6815 (dp6816 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in ESTABLISHED State' p6817 sg22 I00 sg37 g38 sg39 g6817 sbag3 (g7 g8 NtRp6818 (dp6819 g11 Nsg12 I234 sg13 I01 sg14 g3 (g15 g8 NtRp6820 (dp6821 g18 g3 (g19 g5 (ltRp6822 (dp6823 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6824 (dp6825 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6826 (dp6827 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6828 (dp6829 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-SENT State' p6830 sg22 I00 sg37 g38 sg39 g6830 sbag3 (g7 g8 NtRp6831 (dp6832 g11 Nsg12 I235 sg13 I01 sg14 g3 (g15 g8 NtRp6833 (dp6834 g18 g3 (g19 g5 (ltRp6835 (dp6836 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6837 (dp6838 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6839 (dp6840 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6841 (dp6842 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in SYN-RECEIVED State' p6843 sg22 I00 sg37 g38 sg39 g6843 sbag3 (g7 g8 NtRp6844 (dp6845 g11 Nsg12 I236 sg13 I01 sg14 g3 (g15 g8 NtRp6846 (dp6847 g18 g3 (g19 g5 (ltRp6848 (dp6849 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6850 (dp6851 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6852 (dp6853 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6854 (dp6855 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-1 State' p6856 sg22 I00 sg37 g38 sg39 g6856 sbag3 (g7 g8 NtRp6857 (dp6858 g11 Nsg12 I237 sg13 I01 sg14 g3 (g15 g8 NtRp6859 (dp6860 g18 g3 (g19 g5 (ltRp6861 (dp6862 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6863 (dp6864 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6865 (dp6866 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6867 (dp6868 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in FIN-WAIT-2 State' p6869 sg22 I00 sg37 g38 sg39 g6869 sbag3 (g7 g8 NtRp6870 (dp6871 g11 Nsg12 I238 sg13 I01 sg14 g3 (g15 g8 NtRp6872 (dp6873 g18 g3 (g19 g5 (ltRp6874 (dp6875 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6876 (dp6877 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6878 (dp6879 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6880 (dp6881 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in TIME-WAIT State' p6882 sg22 I00 sg37 g38 sg39 g6882 sbag3 (g7 g8 NtRp6883 (dp6884 g11 Nsg12 I239 sg13 I01 sg14 g3 (g15 g8 NtRp6885 (dp6886 g18 g3 (g19 g5 (ltRp6887 (dp6888 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6889 (dp6890 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6891 (dp6892 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6893 (dp6894 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE STATE' p6895 sg22 I00 sg37 g38 sg39 g6895 sbag3 (g7 g8 NtRp6896 (dp6897 g11 Nsg12 I240 sg13 I01 sg14 g3 (g15 g8 NtRp6898 (dp6899 g18 g3 (g19 g5 (ltRp6900 (dp6901 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6902 (dp6903 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6904 (dp6905 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6906 (dp6907 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSE-WAIT State' p6908 sg22 I00 sg37 g38 sg39 g6908 sbag3 (g7 g8 NtRp6909 (dp6910 g11 Nsg12 I241 sg13 I01 sg14 g3 (g15 g8 NtRp6911 (dp6912 g18 g3 (g19 g5 (ltRp6913 (dp6914 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6915 (dp6916 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6917 (dp6918 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6919 (dp6920 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LAST-ACK State' p6921 sg22 I00 sg37 g38 sg39 g6921 sbag3 (g7 g8 NtRp6922 (dp6923 g11 Nsg12 I242 sg13 I01 sg14 g3 (g15 g8 NtRp6924 (dp6925 g18 g3 (g19 g5 (ltRp6926 (dp6927 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6928 (dp6929 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6930 (dp6931 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6932 (dp6933 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in LISTENING State' p6934 sg22 I00 sg37 g38 sg39 g6934 sbag3 (g7 g8 NtRp6935 (dp6936 g11 Nsg12 I243 sg13 I01 sg14 g3 (g15 g8 NtRp6937 (dp6938 g18 g3 (g19 g5 (ltRp6939 (dp6940 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6941 (dp6942 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6943 (dp6944 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6945 (dp6946 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Connections in CLOSING State' p6947 sg22 I00 sg37 g38 sg39 g6947 sbag3 (g7 g8 NtRp6948 (dp6949 g11 Nsg12 I244 sg13 I01 sg14 g3 (g15 g8 NtRp6950 (dp6951 g18 g3 (g19 g5 (ltRp6952 (dp6953 g12 I-1 sg22 I00 sg11 Nsbsg23 g3 (g24 g5 (ltRp6954 (dp6955 g12 I-1 sg22 I00 sg11 Nsbsg11 Nsg12 I-1 sg27 g3 (g28 g5 (ltRp6956 (dp6957 g12 I-1 sg22 I00 sg11 Nsbsg22 I00 sg31 g3 (g32 g5 (ltRp6958 (dp6959 g12 I-1 sg22 I00 sg11 Nsbsbsg35 S'TCP Internally Aborted Connections' p6960 sg22 I00 sg37 g38 sg39 g6960 sbatRp6961 (dp6962 g12 I244 sg22 I00 sg11 Nsbs.</svRestConfiguration> - </statManagerOptions> - <currentUniqueIDForAgent type="int">2</currentUniqueIDForAgent> - <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory"> - <singletonDict type="dict"/> - <referenceCountDict type="dict"> - <item> - <key type="str">qovCoprocessor</key> - <value type="int">0</value> - </item> - <item> - <key type="str">Impairment</key> - <value type="int">0</value> - </item> - <item> - <key type="str">asrCoprocessor</key> - <value type="int">0</value> - </item> - </referenceCountDict> - </_scenarioElementFactory> - </item> - </testList> -</root> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1024K.rxf b/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1024K.rxf deleted file mode 100644 index 9c11026d1..000000000 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1024K.rxf +++ /dev/null @@ -1,2392 +0,0 @@ -<?xml version="1.0" ?> -<root ver="[21, [1, [0, [0]]]]" type="ixRepository"> - <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="cac5e27f-ec70-45e3-bc6c-7b0ac9e43449" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">3</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420"> <name type="String">client network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="af65320b-b937-4835-b8c1-510cc79660ac" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="0216d80d-55b8-4b3e-a187-6e8536fa5902" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="a645bdf1-8071-4555-b862-9f30729946e7" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="6b363dca-4b7b-45f3-a094-50df1f3b6fb7" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="0ee36d95-6f82-49e3-aaed-52fada95c460" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R6</name> <mac type="String">00:C0:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420"> <name type="String">VLAN-R6</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="410b3e8d-36a6-41b5-821e-9ee93496ea7a" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R6</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="f020117b-0c7f-4da8-a1ae-0fca36b0caad" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-8</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-8</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-8</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="a360ad81-4163-41db-b64f-bc1af27777d5" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-10</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="5d8e54de-002f-41c6-aac8-aff822bb0f7e" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-10</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="8a334019-95aa-49f2-80dd-08bd013b6f6c" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-8</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="45915d75-f382-4032-821f-233d11a38c11" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-10</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="10429e22-34bc-4ae5-b85f-3089635b6eb0" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-8</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="7dad7c5d-84ac-4f54-ab59-fd45367fbb53" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="17371506-2053-47a1-9b65-5422bcd36666" version="6.70.420"> <name type="String">HTTPClient1!Traffic2_HTTPServer1</name> <configMapFilename type="String">HTTPClient1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-4</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="424d5c6a-3bd8-4c5f-86af-ad84753fa410" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="076f9c54-cda8-4c68-a9c8-f14550cab1ae" version="6.70.420"> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">14</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">16</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">17</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">18</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420"> <name type="String">server network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="9280ae7b-1935-4fb1-8a86-522e739d7d13" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="3158f964-1bf1-4ba7-b2d5-a0f2174b233f" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="454249a6-64c1-41d4-b0ff-84b288651087" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="3d790b32-9ee7-4e44-b63f-cfab800dea84" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="c3e18bb9-4bf8-4bfc-a308-6a155469a0ee" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R8</name> <mac type="String">00:C0:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420"> <name type="String">VLAN-R8</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R8</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="389909e0-120c-4ea7-857f-69e5981ba867" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-11</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-11</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-11</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="82f06e5c-e227-4c7b-9b89-c4495858f1c1" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-13</name> <ixLoadRestObjectId type="Int">19</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="b4947db2-ab64-441c-81df-d6961888df99" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-13</name> <ixLoadRestObjectId type="Int">20</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="76a42df0-2980-40cb-a135-8afd39ffa5a2" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-11</name> <ixLoadRestObjectId type="Int">21</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="34244aba-2937-43a8-900b-7821e096b69a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-13</name> <ixLoadRestObjectId type="Int">22</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="2551de11-5f59-49dc-92be-266b8bf8fe90" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-11</name> <ixLoadRestObjectId type="Int">23</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="6d9cab2d-989f-4bad-9595-ffefba7bc84a" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-5</name> <ixLoadRestObjectId type="Int">24</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="dd86f951-1b71-4f94-930e-1f690af65f5a" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="2dc65e0c-3a5a-4c59-a3a7-d1cf336fa422" version="6.70.420"> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c648ad96-ef63-4c6d-b77e-586fece09b3b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="dc4d759f-e4ac-4498-9296-92fd26a83bf9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="3b496ea9-e90a-48e5-b01a-adfeb9940e5e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="72bbb3e6-5bae-448e-bcda-ba87a76fa477" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7c3ea465-5392-4894-b8a4-0138f48acf8e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> - </_smSessionXml> - <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> - <xml type="str"></xml> - </_composerConfig> - <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig"> - <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> - </_quickTestConfig> - <lastApiUniqueId type="int">15385</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_4Ports-CC-1024K.rxf</name> - <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_4Ports-CC-256K.rxf</last> - <activeTest type="str">Test1</activeTest> - <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> - <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> - <_apiUniqueId type="int">12991</_apiUniqueId> - <chassisMap type="dict"/> - <hiddenChassis type="NoneType">None</hiddenChassis> - </chassisChain> - <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/> - <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/> - <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/> - <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/> - <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope"> - <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope"> - <name type="str">Test1</name> - <comment type="str"></comment> - <enableForceOwnership type="bool">False</enableForceOwnership> - <enableResetPorts type="bool">False</enableResetPorts> - <statsRequired type="int">1</statsRequired> - <enableConditionalView type="bool">False</enableConditionalView> - <conditionalViewType type="int">0</conditionalViewType> - <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/> - <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun> - <csvInterval type="int">4</csvInterval> - <networkFailureThreshold type="int">0</networkFailureThreshold> - <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions"> - <runMode type="int">1</runMode> - <collectScheme type="int">0</collectScheme> - <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage> - <captureRunAfter type="int">0</captureRunAfter> - <captureRunDuration type="int">0</captureRunDuration> - <_apiUniqueId type="int">12941</_apiUniqueId> - </captureViewOptions> - <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario"> - <item ver="[3, [1, [0, [0]]]]" type="ixScenario"> - <name type="str">TrafficFlow1</name> - <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn"> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Client</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP client</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">newClientActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">12943</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">HTTP server_newServerActivity1</name> - <portMapPolicy type="str">portMesh</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="30" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP server</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">newServerActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="bool">False</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12972</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="str">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12973</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12987</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12988</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">12984</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12974</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12975</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12976</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12977</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">12978</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">12979</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">12980</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">12981</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">12982</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">12983</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12985</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12986</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">2</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12971</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> - <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="3"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId> - <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="4"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="5"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="6"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">newServerActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12989</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ref="9"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12970</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12956</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="3"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="3"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="6"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="6"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12955</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="10"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">newServerActivity1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">0</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">1</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">1</httpVersion> - <keepAlive type="bool">False</keepAlive> - <maxPersistentRequests type="int">0</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">:80</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">:443</httpsProxy> - <browserEmulation type="int">1</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="bool">False</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12948</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12945</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12949</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/1024k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="bool">False</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12946</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12947</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12950</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12951</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12952</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12953</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">1</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12942</_apiUniqueId> - <uniqueID type="int">1</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> - <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="11"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId> - <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="12"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="13"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="14"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">newClientActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> - <name type="str">Timeline1</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">0</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portMesh</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="15"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12940</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12926</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="11"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="11"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="14"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="14"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portMesh</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12925</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="16"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </item> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">Traffic1@client network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic1</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="27" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPClient1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">15343</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">Traffic2_HTTPServer1</name> - <portMapPolicy type="str">portPairs</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="17"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="31" type="ixNetTraffic"> - <name type="str">Traffic2@server network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic2</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="22" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPServer1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="int">0</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15367</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="int">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15368</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15382</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15383</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="18" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">15379</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">1</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15369</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15370</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15371</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15372</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">15373</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">15374</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">15375</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">15376</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">15377</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">15378</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15380</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15381</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">6</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15366</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network_1</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="19" type="ixNetworkRange"> - <_smRangeObjectId type="str">ba01e944-e779-4a36-b3bd-26d1c3b0ef21</_smRangeObjectId> - <name type="str">Network Range IP-R8 in server network_1 (192.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="20" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="19"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">389909e0-120c-4ea7-857f-69e5981ba867</_rangeGroupObjectId> - <_smPluginObjectId type="str">2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="20"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="21" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="21"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">669af012-d572-439d-9c70-cfbacea0fe7f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="22"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">HTTPServer1</name> - <enable type="bool">True</enable> - <timeline ref="7"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15384</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15365</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="23" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15356</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="19"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="19"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="22"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="22"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15355</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="23"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">HTTPServer1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">1</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">3</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">0</httpVersion> - <keepAlive type="int">0</keepAlive> - <maxPersistentRequests type="int">1</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">0.0.0.0</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">0.0.0.0</httpsProxy> - <browserEmulation type="int">3</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="int">0</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15348</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15345</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15349</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">Traffic2_HTTPServer1:80</destination> - <pageObject type="str">/1024k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="int">0</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15346</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15347</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15350</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15351</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15352</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15353</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">4</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15342</_apiUniqueId> - <uniqueID type="int">4</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network_1</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="24" type="ixNetworkRange"> - <_smRangeObjectId type="str">0304987f-176a-4aea-a3cb-c117279fe0ea</_smRangeObjectId> - <name type="str">Network Range IP-R6 in client network_1 (192.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="25" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="24"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">f020117b-0c7f-4da8-a1ae-0fca36b0caad</_rangeGroupObjectId> - <_smPluginObjectId type="str">410b3e8d-36a6-41b5-821e-9ee93496ea7a</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="25"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="26" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="26"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">6c1a9dc4-bc8e-48ad-982f-956b0561e947</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="27"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">HTTPClient1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="28" type="ixTimeline"> - <name type="str">Timeline2</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">3</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portPairs</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15354</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="28"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15341</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="29" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15332</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="24"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="24"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="27"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="27"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15331</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="29"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </item> - </elementList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12922</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">DUT</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12923</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Server</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ref="30"/> - <item ref="31"/> - </elementList> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12924</_apiUniqueId> - </item> - </columnList> - <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/> - <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12921</_apiUniqueId> - </item> - </scenarioList> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics> - <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig> - <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops> - <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun> - <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging> - <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats> - <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats> - <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported> - <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits> - <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/> - <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective> - <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings"> - <disabledEventClasses type="str"></disabledEventClasses> - <disabledPorts type="str"></disabledPorts> - <_apiUniqueId type="int">12990</_apiUniqueId> - </eventHandlerSettings> - <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes> - <networkProtocolOptions type="NoneType">None</networkProtocolOptions> - <seedForRandomBehavior type="int">0</seedForRandomBehavior> - <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor> - <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor> - <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory"> - <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory"> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Playlist</name> - <categoryId type="str">playlist</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Random Data</name> - <categoryId type="str">rdge</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory"> - <startcore type="int">0</startcore> - <totalcores type="int">1</totalcores> - </pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">1</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Real File</name> - <categoryId type="str">realfile</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">2</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Unified File System</name> - <categoryId type="str">ufs</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">3</objectID> - </item> - </categoryList> - <_profileMru type="str"></_profileMru> - </profileDirectory> - <communityList type="NoneType">None</communityList> - <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest> - <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12920</_apiUniqueId> - <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration> - <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions"> - <pollingInterval type="int">2</pollingInterval> - <allowCsvLogging type="bool">False</allowCsvLogging> - <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6(ENXS80_17!!8(6J$Z?<9PL'!\;81W;L+P'T!0!(]&.NK*D)2D?6_3? M.Z0.R[+D!"V01!3?F^&0>AP.T_NPWWC2%A/J!OYM35>TVH>[GL40^^+B'29' MJ*6T-$53C':K!@1,>>_$I4SZA ^W-10R=^\BA6Z5D%M0AGT;*SG>5X)"@,!X M,)LN1].EI-[UYHN1!<W^TIQ-B^_/HZ&Y[-]/1AP8S![OS>EHF U-L]9[ C@; M_*XW)OA'!)R#M$5>A&]K1DT,1+>38+UV_77:/T8>Q0);NAML'7S['K^BK1N0 ME*%E*&5H$\X)MET168+7!3Y:$PB&+^OR$.(4TP4V@V7V N3,2<"PS7*V2Q+A M0F /KN-@GSNBYS&.?/3BX2%BR&(!P>>$^7%U\G$TRJPOC@0!S2(61BQ;R<?( M8V[H%><F2$/K#=HCVG/948AO$%$6;#["-WO-.*UTS+'KX3EB&2+Z^QXFC*9/ M"33MT^Z>NK>U5\;"KJKN=CME5U<"LE8-3=/5;X\3RW[%&R2[/GPT6(Q:9N6\ M;24&5=-1AWB%8$YBG4[?!.T4'I @40'!&-#"^P(Y;O"1!%%8 %R?W1D]E3]Z M:B5KX+G89^. ;"(/69@QT$OV[?Z^^F4_O($__9NK'U' ;K[$FSM^Z<8/76G& MC=_/V'P""?>/(_CGL?G/L1EO"=@0B\@OQG'EL9N3O)..K,4-"502.&"1 !%; MR7HK;G^X6K.;7&3@*AG%]%>!A8F+//<GXEOH'JUS2HC-WRV'))*C)MYG'[-. M8Y0D'N7FF26K 2IW;=CI(2WR8B:?SQ1M,$=Y6^>=:KZWW&: &%X'Y, 9? NK M#\OE/+/-H^?V@]4ZW5B<,.X^F=_,OKP<64OKB?N1M^.OS^9\VWANS -0O3P8 MR/J]0O8K,4+!OCQ 3-()./0XJ6/ON=4P$G.6U$KX89>(^ +'>HO#PYB]_,4S M[Q;32ZP'=_WJP2^K9&7YE9F0.YF[<C'AS&;=KF/=T>6ZIF&Y8;20_(+LCMS2 MM':GLUIU.IVZ6),J!^=#@9CR.H'71D<3/G+(N=EGBHEE#CEHR;K<E U=;AO- M>J/9;-0A'D-O&?5F1VX:;:/>-AH:A-RZOFZUA>N<=6E$(&_"L#/S.</0]+:L MZ[+67NKU;H/_*.V6WKIN-V6MT]6R:$^L*OP&<(0#0X+=W/5=+]F1# [(9+-6 M?)$X)SXB^]7U<;HLPZGU4>8:C^5;1GG#4]]Q^('.F3 AQ6@V%*.N*;IQ?33L M=O737*56N3@?S-Q/,=L%Y'N:I8'548RX"(NE4D:YX&B!/8RHF)NYGT"Y(744 M79-&_5-G.=H%9^E6'W2?()>M"=I(/ -0Z==]I_7;DPG%V%,\RA./6BZ.4ITJ MS/T"AY!C,,E-"W3#9ZZW$R\EE/(=^_G1LI$G9J-KB> *_>>&UC8'?WJ!3,W- M3GI+12H*DS,9"N/WY/_<.8$IE QT%O*#K$(@@\#S(&7Q*DXH&C,$'\")97:* M51I/,"(^=OC9R7DK7MWE'13P2C]C+]B)>H26NCF%*[U ZN-,40=RHMC;.3=% M_)*CI/*_Y*M(J78'97E@!Y[I@^)6R,;E'DM9E4X70<3P OGK<F\%N,S-)N39 M8YG)I;CT97B5+B_J+=:E<_"Y:N&Z57+XG5"^\#KOC)1MO8IBC;/CPCJ[I/V' M^V%6=_/[B>\=Q+O..R:N_QT[Q[K\:*,F2CBV:"G.[[%W/2%DR8=3XK8FO-5R M%^C:*1Y?96I20!Q,Q%4'V2 ,.L%;[*5W3E58P(76WX27;[- 2,H#<67)76<Y M- C\E;N.",I?(/FJ4P!M ,7W2-ZWB,0QQH<GMT^.423*H//CU<'4)JY02 +F MJEWP"D>:!^=96F7QKYT,E!_7P=LW#'(,-1_Y_]6&,.?SY(_L/QQW_P)K190H end </svConfiguration> - <svRestConfiguration type="str"></svRestConfiguration> - </statManagerOptions> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory"> - <singletonDict type="dict"/> - <referenceCountDict type="dict"> - <item> - <key type="str">qovCoprocessor</key> - <value type="int">0</value> - </item> - <item> - <key type="str">Impairment</key> - <value type="int">0</value> - </item> - <item> - <key type="str">asrCoprocessor</key> - <value type="int">0</value> - </item> - </referenceCountDict> - </_scenarioElementFactory> - </item> - </testList> -</root> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1B.rxf b/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1B.rxf deleted file mode 100644 index 8f1fbd8d4..000000000 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-1B.rxf +++ /dev/null @@ -1,2392 +0,0 @@ -<?xml version="1.0" ?> -<root ver="[21, [1, [0, [0]]]]" type="ixRepository"> - <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="cac5e27f-ec70-45e3-bc6c-7b0ac9e43449" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">3</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420"> <name type="String">client network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="af65320b-b937-4835-b8c1-510cc79660ac" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="0216d80d-55b8-4b3e-a187-6e8536fa5902" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="a645bdf1-8071-4555-b862-9f30729946e7" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="6b363dca-4b7b-45f3-a094-50df1f3b6fb7" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="0ee36d95-6f82-49e3-aaed-52fada95c460" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R6</name> <mac type="String">00:C0:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420"> <name type="String">VLAN-R6</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="410b3e8d-36a6-41b5-821e-9ee93496ea7a" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R6</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="f020117b-0c7f-4da8-a1ae-0fca36b0caad" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-8</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-8</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-8</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="a360ad81-4163-41db-b64f-bc1af27777d5" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-10</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="5d8e54de-002f-41c6-aac8-aff822bb0f7e" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-10</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="8a334019-95aa-49f2-80dd-08bd013b6f6c" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-8</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="45915d75-f382-4032-821f-233d11a38c11" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-10</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="10429e22-34bc-4ae5-b85f-3089635b6eb0" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-8</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="7dad7c5d-84ac-4f54-ab59-fd45367fbb53" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="17371506-2053-47a1-9b65-5422bcd36666" version="6.70.420"> <name type="String">HTTPClient1!Traffic2_HTTPServer1</name> <configMapFilename type="String">HTTPClient1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-4</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="424d5c6a-3bd8-4c5f-86af-ad84753fa410" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="076f9c54-cda8-4c68-a9c8-f14550cab1ae" version="6.70.420"> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">14</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">16</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">17</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">18</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420"> <name type="String">server network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="9280ae7b-1935-4fb1-8a86-522e739d7d13" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="3158f964-1bf1-4ba7-b2d5-a0f2174b233f" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="454249a6-64c1-41d4-b0ff-84b288651087" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="3d790b32-9ee7-4e44-b63f-cfab800dea84" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="c3e18bb9-4bf8-4bfc-a308-6a155469a0ee" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R8</name> <mac type="String">00:C0:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420"> <name type="String">VLAN-R8</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R8</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="389909e0-120c-4ea7-857f-69e5981ba867" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-11</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-11</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-11</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="82f06e5c-e227-4c7b-9b89-c4495858f1c1" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-13</name> <ixLoadRestObjectId type="Int">19</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="b4947db2-ab64-441c-81df-d6961888df99" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-13</name> <ixLoadRestObjectId type="Int">20</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="76a42df0-2980-40cb-a135-8afd39ffa5a2" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-11</name> <ixLoadRestObjectId type="Int">21</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="34244aba-2937-43a8-900b-7821e096b69a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-13</name> <ixLoadRestObjectId type="Int">22</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="2551de11-5f59-49dc-92be-266b8bf8fe90" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-11</name> <ixLoadRestObjectId type="Int">23</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="6d9cab2d-989f-4bad-9595-ffefba7bc84a" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-5</name> <ixLoadRestObjectId type="Int">24</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="dd86f951-1b71-4f94-930e-1f690af65f5a" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="2dc65e0c-3a5a-4c59-a3a7-d1cf336fa422" version="6.70.420"> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c648ad96-ef63-4c6d-b77e-586fece09b3b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="dc4d759f-e4ac-4498-9296-92fd26a83bf9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="3b496ea9-e90a-48e5-b01a-adfeb9940e5e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="72bbb3e6-5bae-448e-bcda-ba87a76fa477" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7c3ea465-5392-4894-b8a4-0138f48acf8e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> - </_smSessionXml> - <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> - <xml type="str"></xml> - </_composerConfig> - <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig"> - <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> - </_quickTestConfig> - <lastApiUniqueId type="int">15385</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_4Ports-CC-1B.rxf</name> - <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_4Ports-CC-4K.rxf</last> - <activeTest type="str">Test1</activeTest> - <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> - <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> - <_apiUniqueId type="int">12991</_apiUniqueId> - <chassisMap type="dict"/> - <hiddenChassis type="NoneType">None</hiddenChassis> - </chassisChain> - <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/> - <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/> - <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/> - <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/> - <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope"> - <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope"> - <name type="str">Test1</name> - <comment type="str"></comment> - <enableForceOwnership type="bool">False</enableForceOwnership> - <enableResetPorts type="bool">False</enableResetPorts> - <statsRequired type="int">1</statsRequired> - <enableConditionalView type="bool">False</enableConditionalView> - <conditionalViewType type="int">0</conditionalViewType> - <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/> - <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun> - <csvInterval type="int">4</csvInterval> - <networkFailureThreshold type="int">0</networkFailureThreshold> - <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions"> - <runMode type="int">1</runMode> - <collectScheme type="int">0</collectScheme> - <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage> - <captureRunAfter type="int">0</captureRunAfter> - <captureRunDuration type="int">0</captureRunDuration> - <_apiUniqueId type="int">12941</_apiUniqueId> - </captureViewOptions> - <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario"> - <item ver="[3, [1, [0, [0]]]]" type="ixScenario"> - <name type="str">TrafficFlow1</name> - <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn"> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Client</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP client</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">newClientActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">12943</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">HTTP server_newServerActivity1</name> - <portMapPolicy type="str">portMesh</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="30" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP server</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">newServerActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="bool">False</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12972</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="str">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12973</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12987</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12988</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">12984</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12974</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12975</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12976</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12977</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">12978</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">12979</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">12980</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">12981</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">12982</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">12983</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12985</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12986</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">2</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12971</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> - <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="3"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId> - <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="4"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="5"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="6"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">newServerActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12989</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ref="9"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12970</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12956</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="3"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="3"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="6"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="6"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12955</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="10"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">newServerActivity1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">0</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">1</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">1</httpVersion> - <keepAlive type="bool">False</keepAlive> - <maxPersistentRequests type="int">0</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">:80</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">:443</httpsProxy> - <browserEmulation type="int">1</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="bool">False</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12948</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12945</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12949</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/1b.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="bool">False</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12946</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12947</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12950</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12951</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12952</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12953</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">1</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12942</_apiUniqueId> - <uniqueID type="int">1</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> - <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="11"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId> - <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="12"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="13"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="14"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">newClientActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> - <name type="str">Timeline1</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">0</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portMesh</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="15"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12940</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12926</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="11"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="11"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="14"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="14"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portMesh</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12925</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="16"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </item> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">Traffic1@client network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic1</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="27" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPClient1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">15343</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">Traffic2_HTTPServer1</name> - <portMapPolicy type="str">portPairs</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="17"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="31" type="ixNetTraffic"> - <name type="str">Traffic2@server network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic2</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="22" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPServer1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="int">0</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15367</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="int">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15368</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15382</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15383</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="18" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">15379</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">1</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15369</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15370</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15371</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15372</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">15373</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">15374</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">15375</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">15376</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">15377</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">15378</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15380</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15381</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">6</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15366</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network_1</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="19" type="ixNetworkRange"> - <_smRangeObjectId type="str">ba01e944-e779-4a36-b3bd-26d1c3b0ef21</_smRangeObjectId> - <name type="str">Network Range IP-R8 in server network_1 (192.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="20" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="19"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">389909e0-120c-4ea7-857f-69e5981ba867</_rangeGroupObjectId> - <_smPluginObjectId type="str">2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="20"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="21" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="21"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">669af012-d572-439d-9c70-cfbacea0fe7f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="22"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">HTTPServer1</name> - <enable type="bool">True</enable> - <timeline ref="7"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15384</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15365</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="23" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15356</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="19"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="19"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="22"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="22"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15355</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="23"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">HTTPServer1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">1</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">3</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">0</httpVersion> - <keepAlive type="int">0</keepAlive> - <maxPersistentRequests type="int">1</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">0.0.0.0</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">0.0.0.0</httpsProxy> - <browserEmulation type="int">3</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="int">0</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15348</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15345</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15349</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">Traffic2_HTTPServer1:80</destination> - <pageObject type="str">/1b.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="int">0</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15346</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15347</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15350</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15351</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15352</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15353</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">4</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15342</_apiUniqueId> - <uniqueID type="int">4</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network_1</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="24" type="ixNetworkRange"> - <_smRangeObjectId type="str">0304987f-176a-4aea-a3cb-c117279fe0ea</_smRangeObjectId> - <name type="str">Network Range IP-R6 in client network_1 (192.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="25" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="24"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">f020117b-0c7f-4da8-a1ae-0fca36b0caad</_rangeGroupObjectId> - <_smPluginObjectId type="str">410b3e8d-36a6-41b5-821e-9ee93496ea7a</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="25"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="26" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="26"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">6c1a9dc4-bc8e-48ad-982f-956b0561e947</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="27"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">HTTPClient1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="28" type="ixTimeline"> - <name type="str">Timeline2</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">3</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portPairs</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15354</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="28"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15341</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="29" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15332</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="24"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="24"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="27"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="27"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15331</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="29"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </item> - </elementList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12922</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">DUT</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12923</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Server</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ref="30"/> - <item ref="31"/> - </elementList> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12924</_apiUniqueId> - </item> - </columnList> - <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/> - <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12921</_apiUniqueId> - </item> - </scenarioList> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics> - <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig> - <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops> - <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun> - <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging> - <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats> - <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats> - <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported> - <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits> - <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/> - <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective> - <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings"> - <disabledEventClasses type="str"></disabledEventClasses> - <disabledPorts type="str"></disabledPorts> - <_apiUniqueId type="int">12990</_apiUniqueId> - </eventHandlerSettings> - <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes> - <networkProtocolOptions type="NoneType">None</networkProtocolOptions> - <seedForRandomBehavior type="int">0</seedForRandomBehavior> - <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor> - <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor> - <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory"> - <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory"> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Playlist</name> - <categoryId type="str">playlist</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Random Data</name> - <categoryId type="str">rdge</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory"> - <startcore type="int">0</startcore> - <totalcores type="int">1</totalcores> - </pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">1</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Real File</name> - <categoryId type="str">realfile</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">2</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Unified File System</name> - <categoryId type="str">ufs</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">3</objectID> - </item> - </categoryList> - <_profileMru type="str"></_profileMru> - </profileDirectory> - <communityList type="NoneType">None</communityList> - <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest> - <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12920</_apiUniqueId> - <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration> - <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions"> - <pollingInterval type="int">2</pollingInterval> - <allowCsvLogging type="bool">False</allowCsvLogging> - <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6(ENXS80_17!!8(6J$Z?<9PL'!\;81W;L+P'T!0!(]&.NK*D)2D?6_3? M.Z0.R[+D!"V01!3?F^&0>AP.T_NPWWC2%A/J!OYM35>TVH>[GL40^^+B'29' MJ*6T-$53C':K!@1,>>_$I4SZA ^W-10R=^\BA6Z5D%M0AGT;*SG>5X)"@,!X M,)LN1].EI-[UYHN1!<W^TIQ-B^_/HZ&Y[-]/1AP8S![OS>EHF U-L]9[ C@; M_*XW)OA'!)R#M$5>A&]K1DT,1+>38+UV_77:/T8>Q0);NAML'7S['K^BK1N0 ME*%E*&5H$\X)MET168+7!3Y:$PB&+^OR$.(4TP4V@V7V N3,2<"PS7*V2Q+A M0F /KN-@GSNBYS&.?/3BX2%BR&(!P>>$^7%U\G$TRJPOC@0!S2(61BQ;R<?( M8V[H%><F2$/K#=HCVG/948AO$%$6;#["-WO-.*UTS+'KX3EB&2+Z^QXFC*9/ M"33MT^Z>NK>U5\;"KJKN=CME5U<"LE8-3=/5;X\3RW[%&R2[/GPT6(Q:9N6\ M;24&5=-1AWB%8$YBG4[?!.T4'I @40'!&-#"^P(Y;O"1!%%8 %R?W1D]E3]Z M:B5KX+G89^. ;"(/69@QT$OV[?Z^^F4_O($__9NK'U' ;K[$FSM^Z<8/76G& MC=_/V'P""?>/(_CGL?G/L1EO"=@0B\@OQG'EL9N3O)..K,4-"502.&"1 !%; MR7HK;G^X6K.;7&3@*AG%]%>!A8F+//<GXEOH'JUS2HC-WRV'))*C)MYG'[-. M8Y0D'N7FF26K 2IW;=CI(2WR8B:?SQ1M,$=Y6^>=:KZWW&: &%X'Y, 9? NK M#\OE/+/-H^?V@]4ZW5B<,.X^F=_,OKP<64OKB?N1M^.OS^9\VWANS -0O3P8 MR/J]0O8K,4+!OCQ 3-()./0XJ6/ON=4P$G.6U$KX89>(^ +'>HO#PYB]_,4S M[Q;32ZP'=_WJP2^K9&7YE9F0.YF[<C'AS&;=KF/=T>6ZIF&Y8;20_(+LCMS2 MM':GLUIU.IVZ6),J!^=#@9CR.H'71D<3/G+(N=EGBHEE#CEHR;K<E U=;AO- M>J/9;-0A'D-O&?5F1VX:;:/>-AH:A-RZOFZUA>N<=6E$(&_"L#/S.</0]+:L MZ[+67NKU;H/_*.V6WKIN-V6MT]6R:$^L*OP&<(0#0X+=W/5=+]F1# [(9+-6 M?)$X)SXB^]7U<;HLPZGU4>8:C^5;1GG#4]]Q^('.F3 AQ6@V%*.N*;IQ?33L M=O737*56N3@?S-Q/,=L%Y'N:I8'548RX"(NE4D:YX&B!/8RHF)NYGT"Y(744 M79-&_5-G.=H%9^E6'W2?()>M"=I(/ -0Z==]I_7;DPG%V%,\RA./6BZ.4ITJ MS/T"AY!C,,E-"W3#9ZZW$R\EE/(=^_G1LI$G9J-KB> *_>>&UC8'?WJ!3,W- M3GI+12H*DS,9"N/WY/_<.8$IE QT%O*#K$(@@\#S(&7Q*DXH&C,$'\")97:* M51I/,"(^=OC9R7DK7MWE'13P2C]C+]B)>H26NCF%*[U ZN-,40=RHMC;.3=% M_)*CI/*_Y*M(J78'97E@!Y[I@^)6R,;E'DM9E4X70<3P OGK<F\%N,S-)N39 M8YG)I;CT97B5+B_J+=:E<_"Y:N&Z57+XG5"^\#KOC)1MO8IBC;/CPCJ[I/V' M^V%6=_/[B>\=Q+O..R:N_QT[Q[K\:*,F2CBV:"G.[[%W/2%DR8=3XK8FO-5R M%^C:*1Y?96I20!Q,Q%4'V2 ,.L%;[*5W3E58P(76WX27;[- 2,H#<67)76<Y M- C\E;N.",I?(/FJ4P!M ,7W2-ZWB,0QQH<GMT^.423*H//CU<'4)JY02 +F MJEWP"D>:!^=96F7QKYT,E!_7P=LW#'(,-1_Y_]6&,.?SY(_L/QQW_P)K190H end </svConfiguration> - <svRestConfiguration type="str"></svRestConfiguration> - </statManagerOptions> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory"> - <singletonDict type="dict"/> - <referenceCountDict type="dict"> - <item> - <key type="str">qovCoprocessor</key> - <value type="int">0</value> - </item> - <item> - <key type="str">Impairment</key> - <value type="int">0</value> - </item> - <item> - <key type="str">asrCoprocessor</key> - <value type="int">0</value> - </item> - </referenceCountDict> - </_scenarioElementFactory> - </item> - </testList> -</root> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-256K.rxf b/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-256K.rxf deleted file mode 100644 index 1c27859c7..000000000 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-256K.rxf +++ /dev/null @@ -1,2392 +0,0 @@ -<?xml version="1.0" ?> -<root ver="[21, [1, [0, [0]]]]" type="ixRepository"> - <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="cac5e27f-ec70-45e3-bc6c-7b0ac9e43449" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">3</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420"> <name type="String">client network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="af65320b-b937-4835-b8c1-510cc79660ac" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="0216d80d-55b8-4b3e-a187-6e8536fa5902" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="a645bdf1-8071-4555-b862-9f30729946e7" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="6b363dca-4b7b-45f3-a094-50df1f3b6fb7" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="0ee36d95-6f82-49e3-aaed-52fada95c460" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R6</name> <mac type="String">00:C0:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420"> <name type="String">VLAN-R6</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="410b3e8d-36a6-41b5-821e-9ee93496ea7a" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R6</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="f020117b-0c7f-4da8-a1ae-0fca36b0caad" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-8</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-8</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-8</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="a360ad81-4163-41db-b64f-bc1af27777d5" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-10</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="5d8e54de-002f-41c6-aac8-aff822bb0f7e" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-10</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="8a334019-95aa-49f2-80dd-08bd013b6f6c" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-8</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="45915d75-f382-4032-821f-233d11a38c11" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-10</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="10429e22-34bc-4ae5-b85f-3089635b6eb0" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-8</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="7dad7c5d-84ac-4f54-ab59-fd45367fbb53" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="17371506-2053-47a1-9b65-5422bcd36666" version="6.70.420"> <name type="String">HTTPClient1!Traffic2_HTTPServer1</name> <configMapFilename type="String">HTTPClient1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-4</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="424d5c6a-3bd8-4c5f-86af-ad84753fa410" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="076f9c54-cda8-4c68-a9c8-f14550cab1ae" version="6.70.420"> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">14</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">16</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">17</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">18</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420"> <name type="String">server network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="9280ae7b-1935-4fb1-8a86-522e739d7d13" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="3158f964-1bf1-4ba7-b2d5-a0f2174b233f" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="454249a6-64c1-41d4-b0ff-84b288651087" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="3d790b32-9ee7-4e44-b63f-cfab800dea84" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="c3e18bb9-4bf8-4bfc-a308-6a155469a0ee" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R8</name> <mac type="String">00:C0:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420"> <name type="String">VLAN-R8</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R8</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="389909e0-120c-4ea7-857f-69e5981ba867" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-11</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-11</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-11</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="82f06e5c-e227-4c7b-9b89-c4495858f1c1" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-13</name> <ixLoadRestObjectId type="Int">19</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="b4947db2-ab64-441c-81df-d6961888df99" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-13</name> <ixLoadRestObjectId type="Int">20</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="76a42df0-2980-40cb-a135-8afd39ffa5a2" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-11</name> <ixLoadRestObjectId type="Int">21</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="34244aba-2937-43a8-900b-7821e096b69a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-13</name> <ixLoadRestObjectId type="Int">22</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="2551de11-5f59-49dc-92be-266b8bf8fe90" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-11</name> <ixLoadRestObjectId type="Int">23</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="6d9cab2d-989f-4bad-9595-ffefba7bc84a" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-5</name> <ixLoadRestObjectId type="Int">24</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="dd86f951-1b71-4f94-930e-1f690af65f5a" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="2dc65e0c-3a5a-4c59-a3a7-d1cf336fa422" version="6.70.420"> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c648ad96-ef63-4c6d-b77e-586fece09b3b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="dc4d759f-e4ac-4498-9296-92fd26a83bf9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="3b496ea9-e90a-48e5-b01a-adfeb9940e5e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="72bbb3e6-5bae-448e-bcda-ba87a76fa477" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7c3ea465-5392-4894-b8a4-0138f48acf8e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> - </_smSessionXml> - <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> - <xml type="str"></xml> - </_composerConfig> - <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig"> - <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> - </_quickTestConfig> - <lastApiUniqueId type="int">15385</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_4Ports-CC-256K.rxf</name> - <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_4Ports-CC-64K.rxf</last> - <activeTest type="str">Test1</activeTest> - <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> - <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> - <_apiUniqueId type="int">12991</_apiUniqueId> - <chassisMap type="dict"/> - <hiddenChassis type="NoneType">None</hiddenChassis> - </chassisChain> - <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/> - <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/> - <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/> - <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/> - <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope"> - <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope"> - <name type="str">Test1</name> - <comment type="str"></comment> - <enableForceOwnership type="bool">False</enableForceOwnership> - <enableResetPorts type="bool">False</enableResetPorts> - <statsRequired type="int">1</statsRequired> - <enableConditionalView type="bool">False</enableConditionalView> - <conditionalViewType type="int">0</conditionalViewType> - <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/> - <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun> - <csvInterval type="int">4</csvInterval> - <networkFailureThreshold type="int">0</networkFailureThreshold> - <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions"> - <runMode type="int">1</runMode> - <collectScheme type="int">0</collectScheme> - <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage> - <captureRunAfter type="int">0</captureRunAfter> - <captureRunDuration type="int">0</captureRunDuration> - <_apiUniqueId type="int">12941</_apiUniqueId> - </captureViewOptions> - <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario"> - <item ver="[3, [1, [0, [0]]]]" type="ixScenario"> - <name type="str">TrafficFlow1</name> - <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn"> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Client</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP client</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">newClientActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">12943</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">HTTP server_newServerActivity1</name> - <portMapPolicy type="str">portMesh</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="30" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP server</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">newServerActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="bool">False</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12972</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="str">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12973</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12987</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12988</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">12984</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12974</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12975</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12976</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12977</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">12978</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">12979</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">12980</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">12981</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">12982</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">12983</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12985</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12986</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">2</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12971</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> - <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="3"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId> - <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="4"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="5"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="6"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">newServerActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12989</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ref="9"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12970</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12956</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="3"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="3"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="6"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="6"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12955</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="10"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">newServerActivity1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">0</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">1</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">1</httpVersion> - <keepAlive type="bool">False</keepAlive> - <maxPersistentRequests type="int">0</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">:80</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">:443</httpsProxy> - <browserEmulation type="int">1</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="bool">False</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12948</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12945</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12949</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/256k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="bool">False</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12946</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12947</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12950</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12951</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12952</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12953</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">1</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12942</_apiUniqueId> - <uniqueID type="int">1</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> - <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="11"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId> - <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="12"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="13"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="14"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">newClientActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> - <name type="str">Timeline1</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">0</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portMesh</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="15"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12940</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12926</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="11"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="11"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="14"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="14"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portMesh</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12925</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="16"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </item> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">Traffic1@client network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic1</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="27" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPClient1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">15343</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">Traffic2_HTTPServer1</name> - <portMapPolicy type="str">portPairs</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="17"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="31" type="ixNetTraffic"> - <name type="str">Traffic2@server network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic2</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="22" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPServer1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="int">0</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15367</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="int">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15368</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15382</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15383</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="18" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">15379</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">1</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15369</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15370</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15371</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15372</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">15373</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">15374</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">15375</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">15376</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">15377</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">15378</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15380</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15381</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">6</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15366</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network_1</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="19" type="ixNetworkRange"> - <_smRangeObjectId type="str">ba01e944-e779-4a36-b3bd-26d1c3b0ef21</_smRangeObjectId> - <name type="str">Network Range IP-R8 in server network_1 (192.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="20" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="19"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">389909e0-120c-4ea7-857f-69e5981ba867</_rangeGroupObjectId> - <_smPluginObjectId type="str">2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="20"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="21" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="21"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">669af012-d572-439d-9c70-cfbacea0fe7f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="22"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">HTTPServer1</name> - <enable type="bool">True</enable> - <timeline ref="7"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15384</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15365</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="23" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15356</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="19"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="19"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="22"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="22"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15355</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="23"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">HTTPServer1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">1</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">3</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">0</httpVersion> - <keepAlive type="int">0</keepAlive> - <maxPersistentRequests type="int">1</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">0.0.0.0</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">0.0.0.0</httpsProxy> - <browserEmulation type="int">3</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="int">0</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15348</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15345</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15349</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">Traffic2_HTTPServer1:80</destination> - <pageObject type="str">/256k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="int">0</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15346</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15347</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15350</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15351</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15352</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15353</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">4</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15342</_apiUniqueId> - <uniqueID type="int">4</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network_1</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="24" type="ixNetworkRange"> - <_smRangeObjectId type="str">0304987f-176a-4aea-a3cb-c117279fe0ea</_smRangeObjectId> - <name type="str">Network Range IP-R6 in client network_1 (192.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="25" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="24"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">f020117b-0c7f-4da8-a1ae-0fca36b0caad</_rangeGroupObjectId> - <_smPluginObjectId type="str">410b3e8d-36a6-41b5-821e-9ee93496ea7a</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="25"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="26" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="26"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">6c1a9dc4-bc8e-48ad-982f-956b0561e947</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="27"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">HTTPClient1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="28" type="ixTimeline"> - <name type="str">Timeline2</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">3</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portPairs</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15354</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="28"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15341</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="29" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15332</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="24"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="24"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="27"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="27"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15331</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="29"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </item> - </elementList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12922</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">DUT</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12923</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Server</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ref="30"/> - <item ref="31"/> - </elementList> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12924</_apiUniqueId> - </item> - </columnList> - <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/> - <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12921</_apiUniqueId> - </item> - </scenarioList> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics> - <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig> - <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops> - <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun> - <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging> - <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats> - <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats> - <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported> - <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits> - <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/> - <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective> - <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings"> - <disabledEventClasses type="str"></disabledEventClasses> - <disabledPorts type="str"></disabledPorts> - <_apiUniqueId type="int">12990</_apiUniqueId> - </eventHandlerSettings> - <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes> - <networkProtocolOptions type="NoneType">None</networkProtocolOptions> - <seedForRandomBehavior type="int">0</seedForRandomBehavior> - <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor> - <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor> - <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory"> - <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory"> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Playlist</name> - <categoryId type="str">playlist</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Random Data</name> - <categoryId type="str">rdge</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory"> - <startcore type="int">0</startcore> - <totalcores type="int">1</totalcores> - </pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">1</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Real File</name> - <categoryId type="str">realfile</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">2</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Unified File System</name> - <categoryId type="str">ufs</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">3</objectID> - </item> - </categoryList> - <_profileMru type="str"></_profileMru> - </profileDirectory> - <communityList type="NoneType">None</communityList> - <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest> - <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12920</_apiUniqueId> - <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration> - <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions"> - <pollingInterval type="int">2</pollingInterval> - <allowCsvLogging type="bool">False</allowCsvLogging> - <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6(ENXS80_17!!8(6J$Z?<9PL'!\;81W;L+P'T!0!(]&.NK*D)2D?6_3? M.Z0.R[+D!"V01!3?F^&0>AP.T_NPWWC2%A/J!OYM35>TVH>[GL40^^+B'29' MJ*6T-$53C':K!@1,>>_$I4SZA ^W-10R=^\BA6Z5D%M0AGT;*SG>5X)"@,!X M,)LN1].EI-[UYHN1!<W^TIQ-B^_/HZ&Y[-]/1AP8S![OS>EHF U-L]9[ C@; M_*XW)OA'!)R#M$5>A&]K1DT,1+>38+UV_77:/T8>Q0);NAML'7S['K^BK1N0 ME*%E*&5H$\X)MET168+7!3Y:$PB&+^OR$.(4TP4V@V7V N3,2<"PS7*V2Q+A M0F /KN-@GSNBYS&.?/3BX2%BR&(!P>>$^7%U\G$TRJPOC@0!S2(61BQ;R<?( M8V[H%><F2$/K#=HCVG/948AO$%$6;#["-WO-.*UTS+'KX3EB&2+Z^QXFC*9/ M"33MT^Z>NK>U5\;"KJKN=CME5U<"LE8-3=/5;X\3RW[%&R2[/GPT6(Q:9N6\ M;24&5=-1AWB%8$YBG4[?!.T4'I @40'!&-#"^P(Y;O"1!%%8 %R?W1D]E3]Z M:B5KX+G89^. ;"(/69@QT$OV[?Z^^F4_O($__9NK'U' ;K[$FSM^Z<8/76G& MC=_/V'P""?>/(_CGL?G/L1EO"=@0B\@OQG'EL9N3O)..K,4-"502.&"1 !%; MR7HK;G^X6K.;7&3@*AG%]%>!A8F+//<GXEOH'JUS2HC-WRV'))*C)MYG'[-. M8Y0D'N7FF26K 2IW;=CI(2WR8B:?SQ1M,$=Y6^>=:KZWW&: &%X'Y, 9? NK M#\OE/+/-H^?V@]4ZW5B<,.X^F=_,OKP<64OKB?N1M^.OS^9\VWANS -0O3P8 MR/J]0O8K,4+!OCQ 3-()./0XJ6/ON=4P$G.6U$KX89>(^ +'>HO#PYB]_,4S M[Q;32ZP'=_WJP2^K9&7YE9F0.YF[<C'AS&;=KF/=T>6ZIF&Y8;20_(+LCMS2 MM':GLUIU.IVZ6),J!^=#@9CR.H'71D<3/G+(N=EGBHEE#CEHR;K<E U=;AO- M>J/9;-0A'D-O&?5F1VX:;:/>-AH:A-RZOFZUA>N<=6E$(&_"L#/S.</0]+:L MZ[+67NKU;H/_*.V6WKIN-V6MT]6R:$^L*OP&<(0#0X+=W/5=+]F1# [(9+-6 M?)$X)SXB^]7U<;HLPZGU4>8:C^5;1GG#4]]Q^('.F3 AQ6@V%*.N*;IQ?33L M=O737*56N3@?S-Q/,=L%Y'N:I8'548RX"(NE4D:YX&B!/8RHF)NYGT"Y(744 M79-&_5-G.=H%9^E6'W2?()>M"=I(/ -0Z==]I_7;DPG%V%,\RA./6BZ.4ITJ MS/T"AY!C,,E-"W3#9ZZW$R\EE/(=^_G1LI$G9J-KB> *_>>&UC8'?WJ!3,W- M3GI+12H*DS,9"N/WY/_<.8$IE QT%O*#K$(@@\#S(&7Q*DXH&C,$'\")97:* M51I/,"(^=OC9R7DK7MWE'13P2C]C+]B)>H26NCF%*[U ZN-,40=RHMC;.3=% M_)*CI/*_Y*M(J78'97E@!Y[I@^)6R,;E'DM9E4X70<3P OGK<F\%N,S-)N39 M8YG)I;CT97B5+B_J+=:E<_"Y:N&Z57+XG5"^\#KOC)1MO8IBC;/CPCJ[I/V' M^V%6=_/[B>\=Q+O..R:N_QT[Q[K\:*,F2CBV:"G.[[%W/2%DR8=3XK8FO-5R M%^C:*1Y?96I20!Q,Q%4'V2 ,.L%;[*5W3E58P(76WX27;[- 2,H#<67)76<Y M- C\E;N.",I?(/FJ4P!M ,7W2-ZWB,0QQH<GMT^.423*H//CU<'4)JY02 +F MJEWP"D>:!^=96F7QKYT,E!_7P=LW#'(,-1_Y_]6&,.?SY(_L/QQW_P)K190H end </svConfiguration> - <svRestConfiguration type="str"></svRestConfiguration> - </statManagerOptions> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory"> - <singletonDict type="dict"/> - <referenceCountDict type="dict"> - <item> - <key type="str">qovCoprocessor</key> - <value type="int">0</value> - </item> - <item> - <key type="str">Impairment</key> - <value type="int">0</value> - </item> - <item> - <key type="str">asrCoprocessor</key> - <value type="int">0</value> - </item> - </referenceCountDict> - </_scenarioElementFactory> - </item> - </testList> -</root> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-4K.rxf b/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-4K.rxf deleted file mode 100644 index a668b8ea9..000000000 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-4K.rxf +++ /dev/null @@ -1,2392 +0,0 @@ -<?xml version="1.0" ?> -<root ver="[21, [1, [0, [0]]]]" type="ixRepository"> - <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="cac5e27f-ec70-45e3-bc6c-7b0ac9e43449" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">3</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420"> <name type="String">client network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="af65320b-b937-4835-b8c1-510cc79660ac" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="0216d80d-55b8-4b3e-a187-6e8536fa5902" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="a645bdf1-8071-4555-b862-9f30729946e7" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="6b363dca-4b7b-45f3-a094-50df1f3b6fb7" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="0ee36d95-6f82-49e3-aaed-52fada95c460" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R6</name> <mac type="String">00:C0:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420"> <name type="String">VLAN-R6</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="410b3e8d-36a6-41b5-821e-9ee93496ea7a" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R6</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="f020117b-0c7f-4da8-a1ae-0fca36b0caad" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-8</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-8</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-8</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="a360ad81-4163-41db-b64f-bc1af27777d5" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-10</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="5d8e54de-002f-41c6-aac8-aff822bb0f7e" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-10</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="8a334019-95aa-49f2-80dd-08bd013b6f6c" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-8</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="45915d75-f382-4032-821f-233d11a38c11" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-10</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="10429e22-34bc-4ae5-b85f-3089635b6eb0" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-8</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="7dad7c5d-84ac-4f54-ab59-fd45367fbb53" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="17371506-2053-47a1-9b65-5422bcd36666" version="6.70.420"> <name type="String">HTTPClient1!Traffic2_HTTPServer1</name> <configMapFilename type="String">HTTPClient1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-4</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="424d5c6a-3bd8-4c5f-86af-ad84753fa410" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="076f9c54-cda8-4c68-a9c8-f14550cab1ae" version="6.70.420"> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">14</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">16</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">17</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">18</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420"> <name type="String">server network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="9280ae7b-1935-4fb1-8a86-522e739d7d13" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="3158f964-1bf1-4ba7-b2d5-a0f2174b233f" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="454249a6-64c1-41d4-b0ff-84b288651087" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="3d790b32-9ee7-4e44-b63f-cfab800dea84" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="c3e18bb9-4bf8-4bfc-a308-6a155469a0ee" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R8</name> <mac type="String">00:C0:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420"> <name type="String">VLAN-R8</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R8</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="389909e0-120c-4ea7-857f-69e5981ba867" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-11</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-11</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-11</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="82f06e5c-e227-4c7b-9b89-c4495858f1c1" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-13</name> <ixLoadRestObjectId type="Int">19</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="b4947db2-ab64-441c-81df-d6961888df99" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-13</name> <ixLoadRestObjectId type="Int">20</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="76a42df0-2980-40cb-a135-8afd39ffa5a2" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-11</name> <ixLoadRestObjectId type="Int">21</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="34244aba-2937-43a8-900b-7821e096b69a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-13</name> <ixLoadRestObjectId type="Int">22</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="2551de11-5f59-49dc-92be-266b8bf8fe90" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-11</name> <ixLoadRestObjectId type="Int">23</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="6d9cab2d-989f-4bad-9595-ffefba7bc84a" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-5</name> <ixLoadRestObjectId type="Int">24</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="dd86f951-1b71-4f94-930e-1f690af65f5a" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="2dc65e0c-3a5a-4c59-a3a7-d1cf336fa422" version="6.70.420"> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c648ad96-ef63-4c6d-b77e-586fece09b3b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="dc4d759f-e4ac-4498-9296-92fd26a83bf9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="3b496ea9-e90a-48e5-b01a-adfeb9940e5e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="72bbb3e6-5bae-448e-bcda-ba87a76fa477" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7c3ea465-5392-4894-b8a4-0138f48acf8e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> - </_smSessionXml> - <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> - <xml type="str"></xml> - </_composerConfig> - <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig"> - <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> - </_quickTestConfig> - <lastApiUniqueId type="int">15385</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_4Ports-CC-4K.rxf</name> - <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_4Ports-CC-1B.rxf</last> - <activeTest type="str">Test1</activeTest> - <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> - <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> - <_apiUniqueId type="int">12991</_apiUniqueId> - <chassisMap type="dict"/> - <hiddenChassis type="NoneType">None</hiddenChassis> - </chassisChain> - <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/> - <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/> - <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/> - <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/> - <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope"> - <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope"> - <name type="str">Test1</name> - <comment type="str"></comment> - <enableForceOwnership type="bool">False</enableForceOwnership> - <enableResetPorts type="bool">False</enableResetPorts> - <statsRequired type="int">1</statsRequired> - <enableConditionalView type="bool">False</enableConditionalView> - <conditionalViewType type="int">0</conditionalViewType> - <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/> - <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun> - <csvInterval type="int">4</csvInterval> - <networkFailureThreshold type="int">0</networkFailureThreshold> - <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions"> - <runMode type="int">1</runMode> - <collectScheme type="int">0</collectScheme> - <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage> - <captureRunAfter type="int">0</captureRunAfter> - <captureRunDuration type="int">0</captureRunDuration> - <_apiUniqueId type="int">12941</_apiUniqueId> - </captureViewOptions> - <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario"> - <item ver="[3, [1, [0, [0]]]]" type="ixScenario"> - <name type="str">TrafficFlow1</name> - <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn"> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Client</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP client</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">newClientActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">12943</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">HTTP server_newServerActivity1</name> - <portMapPolicy type="str">portMesh</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="30" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP server</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">newServerActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="bool">False</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12972</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="str">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12973</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12987</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12988</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">12984</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12974</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12975</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12976</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12977</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">12978</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">12979</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">12980</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">12981</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">12982</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">12983</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12985</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12986</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">2</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12971</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> - <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="3"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId> - <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="4"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="5"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="6"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">newServerActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12989</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ref="9"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12970</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12956</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="3"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="3"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="6"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="6"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12955</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="10"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">newServerActivity1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">0</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">1</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">1</httpVersion> - <keepAlive type="bool">False</keepAlive> - <maxPersistentRequests type="int">0</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">:80</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">:443</httpsProxy> - <browserEmulation type="int">1</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="bool">False</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12948</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12945</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12949</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/4k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="bool">False</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12946</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12947</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12950</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12951</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12952</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12953</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">1</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12942</_apiUniqueId> - <uniqueID type="int">1</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> - <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="11"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId> - <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="12"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="13"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="14"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">newClientActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> - <name type="str">Timeline1</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">0</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portMesh</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="15"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12940</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12926</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="11"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="11"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="14"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="14"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portMesh</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12925</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="16"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </item> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">Traffic1@client network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic1</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="27" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPClient1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">15343</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">Traffic2_HTTPServer1</name> - <portMapPolicy type="str">portPairs</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="17"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="31" type="ixNetTraffic"> - <name type="str">Traffic2@server network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic2</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="22" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPServer1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="int">0</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15367</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="int">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15368</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15382</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15383</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="18" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">15379</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">1</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15369</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15370</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15371</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15372</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">15373</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">15374</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">15375</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">15376</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">15377</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">15378</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15380</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15381</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">6</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15366</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network_1</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="19" type="ixNetworkRange"> - <_smRangeObjectId type="str">ba01e944-e779-4a36-b3bd-26d1c3b0ef21</_smRangeObjectId> - <name type="str">Network Range IP-R8 in server network_1 (192.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="20" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="19"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">389909e0-120c-4ea7-857f-69e5981ba867</_rangeGroupObjectId> - <_smPluginObjectId type="str">2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="20"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="21" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="21"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">669af012-d572-439d-9c70-cfbacea0fe7f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="22"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">HTTPServer1</name> - <enable type="bool">True</enable> - <timeline ref="7"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15384</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15365</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="23" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15356</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="19"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="19"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="22"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="22"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15355</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="23"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">HTTPServer1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">1</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">3</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">0</httpVersion> - <keepAlive type="int">0</keepAlive> - <maxPersistentRequests type="int">1</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">0.0.0.0</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">0.0.0.0</httpsProxy> - <browserEmulation type="int">3</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="int">0</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15348</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15345</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15349</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">Traffic2_HTTPServer1:80</destination> - <pageObject type="str">/4k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="int">0</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15346</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15347</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15350</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15351</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15352</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15353</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">4</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15342</_apiUniqueId> - <uniqueID type="int">4</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network_1</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="24" type="ixNetworkRange"> - <_smRangeObjectId type="str">0304987f-176a-4aea-a3cb-c117279fe0ea</_smRangeObjectId> - <name type="str">Network Range IP-R6 in client network_1 (192.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="25" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="24"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">f020117b-0c7f-4da8-a1ae-0fca36b0caad</_rangeGroupObjectId> - <_smPluginObjectId type="str">410b3e8d-36a6-41b5-821e-9ee93496ea7a</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="25"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="26" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="26"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">6c1a9dc4-bc8e-48ad-982f-956b0561e947</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="27"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">HTTPClient1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="28" type="ixTimeline"> - <name type="str">Timeline2</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">3</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portPairs</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15354</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="28"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15341</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="29" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15332</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="24"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="24"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="27"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="27"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15331</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="29"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </item> - </elementList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12922</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">DUT</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12923</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Server</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ref="30"/> - <item ref="31"/> - </elementList> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12924</_apiUniqueId> - </item> - </columnList> - <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/> - <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12921</_apiUniqueId> - </item> - </scenarioList> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics> - <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig> - <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops> - <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun> - <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging> - <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats> - <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats> - <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported> - <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits> - <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/> - <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective> - <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings"> - <disabledEventClasses type="str"></disabledEventClasses> - <disabledPorts type="str"></disabledPorts> - <_apiUniqueId type="int">12990</_apiUniqueId> - </eventHandlerSettings> - <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes> - <networkProtocolOptions type="NoneType">None</networkProtocolOptions> - <seedForRandomBehavior type="int">0</seedForRandomBehavior> - <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor> - <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor> - <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory"> - <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory"> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Playlist</name> - <categoryId type="str">playlist</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Random Data</name> - <categoryId type="str">rdge</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory"> - <startcore type="int">0</startcore> - <totalcores type="int">1</totalcores> - </pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">1</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Real File</name> - <categoryId type="str">realfile</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">2</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Unified File System</name> - <categoryId type="str">ufs</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">3</objectID> - </item> - </categoryList> - <_profileMru type="str"></_profileMru> - </profileDirectory> - <communityList type="NoneType">None</communityList> - <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest> - <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12920</_apiUniqueId> - <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration> - <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions"> - <pollingInterval type="int">2</pollingInterval> - <allowCsvLogging type="bool">False</allowCsvLogging> - <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6(ENXS80_17!!8(6J$Z?<9PL'!\;81W;L+P'T!0!(]&.NK*D)2D?6_3? M.Z0.R[+D!"V01!3?F^&0>AP.T_NPWWC2%A/J!OYM35>TVH>[GL40^^+B'29' MJ*6T-$53C':K!@1,>>_$I4SZA ^W-10R=^\BA6Z5D%M0AGT;*SG>5X)"@,!X M,)LN1].EI-[UYHN1!<W^TIQ-B^_/HZ&Y[-]/1AP8S![OS>EHF U-L]9[ C@; M_*XW)OA'!)R#M$5>A&]K1DT,1+>38+UV_77:/T8>Q0);NAML'7S['K^BK1N0 ME*%E*&5H$\X)MET168+7!3Y:$PB&+^OR$.(4TP4V@V7V N3,2<"PS7*V2Q+A M0F /KN-@GSNBYS&.?/3BX2%BR&(!P>>$^7%U\G$TRJPOC@0!S2(61BQ;R<?( M8V[H%><F2$/K#=HCVG/948AO$%$6;#["-WO-.*UTS+'KX3EB&2+Z^QXFC*9/ M"33MT^Z>NK>U5\;"KJKN=CME5U<"LE8-3=/5;X\3RW[%&R2[/GPT6(Q:9N6\ M;24&5=-1AWB%8$YBG4[?!.T4'I @40'!&-#"^P(Y;O"1!%%8 %R?W1D]E3]Z M:B5KX+G89^. ;"(/69@QT$OV[?Z^^F4_O($__9NK'U' ;K[$FSM^Z<8/76G& MC=_/V'P""?>/(_CGL?G/L1EO"=@0B\@OQG'EL9N3O)..K,4-"502.&"1 !%; MR7HK;G^X6K.;7&3@*AG%]%>!A8F+//<GXEOH'JUS2HC-WRV'))*C)MYG'[-. M8Y0D'N7FF26K 2IW;=CI(2WR8B:?SQ1M,$=Y6^>=:KZWW&: &%X'Y, 9? NK M#\OE/+/-H^?V@]4ZW5B<,.X^F=_,OKP<64OKB?N1M^.OS^9\VWANS -0O3P8 MR/J]0O8K,4+!OCQ 3-()./0XJ6/ON=4P$G.6U$KX89>(^ +'>HO#PYB]_,4S M[Q;32ZP'=_WJP2^K9&7YE9F0.YF[<C'AS&;=KF/=T>6ZIF&Y8;20_(+LCMS2 MM':GLUIU.IVZ6),J!^=#@9CR.H'71D<3/G+(N=EGBHEE#CEHR;K<E U=;AO- M>J/9;-0A'D-O&?5F1VX:;:/>-AH:A-RZOFZUA>N<=6E$(&_"L#/S.</0]+:L MZ[+67NKU;H/_*.V6WKIN-V6MT]6R:$^L*OP&<(0#0X+=W/5=+]F1# [(9+-6 M?)$X)SXB^]7U<;HLPZGU4>8:C^5;1GG#4]]Q^('.F3 AQ6@V%*.N*;IQ?33L M=O737*56N3@?S-Q/,=L%Y'N:I8'548RX"(NE4D:YX&B!/8RHF)NYGT"Y(744 M79-&_5-G.=H%9^E6'W2?()>M"=I(/ -0Z==]I_7;DPG%V%,\RA./6BZ.4ITJ MS/T"AY!C,,E-"W3#9ZZW$R\EE/(=^_G1LI$G9J-KB> *_>>&UC8'?WJ!3,W- M3GI+12H*DS,9"N/WY/_<.8$IE QT%O*#K$(@@\#S(&7Q*DXH&C,$'\")97:* M51I/,"(^=OC9R7DK7MWE'13P2C]C+]B)>H26NCF%*[U ZN-,40=RHMC;.3=% M_)*CI/*_Y*M(J78'97E@!Y[I@^)6R,;E'DM9E4X70<3P OGK<F\%N,S-)N39 M8YG)I;CT97B5+B_J+=:E<_"Y:N&Z57+XG5"^\#KOC)1MO8IBC;/CPCJ[I/V' M^V%6=_/[B>\=Q+O..R:N_QT[Q[K\:*,F2CBV:"G.[[%W/2%DR8=3XK8FO-5R M%^C:*1Y?96I20!Q,Q%4'V2 ,.L%;[*5W3E58P(76WX27;[- 2,H#<67)76<Y M- C\E;N.",I?(/FJ4P!M ,7W2-ZWB,0QQH<GMT^.423*H//CU<'4)JY02 +F MJEWP"D>:!^=96F7QKYT,E!_7P=LW#'(,-1_Y_]6&,.?SY(_L/QQW_P)K190H end </svConfiguration> - <svRestConfiguration type="str"></svRestConfiguration> - </statManagerOptions> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory"> - <singletonDict type="dict"/> - <referenceCountDict type="dict"> - <item> - <key type="str">qovCoprocessor</key> - <value type="int">0</value> - </item> - <item> - <key type="str">Impairment</key> - <value type="int">0</value> - </item> - <item> - <key type="str">asrCoprocessor</key> - <value type="int">0</value> - </item> - </referenceCountDict> - </_scenarioElementFactory> - </item> - </testList> -</root> diff --git a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-64K.rxf b/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-64K.rxf deleted file mode 100644 index 822379f58..000000000 --- a/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-64K.rxf +++ /dev/null @@ -1,2392 +0,0 @@ -<?xml version="1.0" ?> -<root ver="[21, [1, [0, [0]]]]" type="ixRepository"> - <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML"> - <xml type="str"><rpf> <Ixia.Aptixia.StackManager.SMSession type="Ixia.Aptixia.StackManager.SMSession" objectid="04a56313-c07c-4fae-acc5-e29a816e1311" version="6.70.420"> <doWaitLinkUp type="Bool">0</doWaitLinkUp> <doGratArp type="Bool">0</doGratArp> <subscribeToGratArpNotifications type="Bool">0</subscribeToGratArpNotifications> <doInterfaceCheck type="Bool">0</doInterfaceCheck> <rebootPortsBeforeConfigure type="Bool">0</rebootPortsBeforeConfigure> <testDuration type="Int">10000</testDuration> <checkLinkState type="Bool">0</checkLinkState> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420"> <name type="String">client network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1dcd6e1b-17cd-45a1-875a-cbea40d3468c" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="b458c333-b4d4-48ef-bd38-3b456f72f8c8" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="28c0383a-76a7-4750-8162-2ad946ddac97" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="b9a0be2e-3880-4100-9e29-9b474f9301f4" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="e0232591-010e-492c-8a28-75e436f4adb2" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R1</name> <mac type="String">00:98:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420"> <name type="String">VLAN-R1</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="a916ae0f-0731-405d-ad19-eaade6c515f1" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R1</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="adb27552-7165-46a3-bc9e-04914adf40ac" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="aa33a76b-9c7f-48d9-a537-8d6eeec03662" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-1</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-1</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="9c6c8594-548e-4ea5-a478-0bfb6252c1ce" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-2</name> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="693c7b7b-327b-4d59-b187-57d7600308e3" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-2</name> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="0f6ebdb4-7909-447a-b80a-e132dae33a9b" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-1</name> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="7a893f25-0ac6-41c7-ab5a-511c2068582a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-2</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="fc54eec4-41ef-4b6c-9415-bf639013b52d" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-1</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="cac5e27f-ec70-45e3-bc6c-7b0ac9e43449" version="6.70.420"> <name type="String">newClientActivity1!HTTP server_newServerActivity1</name> <configMapFilename type="String">newClientActivity1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">3</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-2</name> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="df783f7c-615e-47c1-b7f0-1174985ea22e" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="3d3cf9ef-8aab-4388-9252-4baea80122d3" version="6.70.420"> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420"> <name type="String">client network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="af65320b-b937-4835-b8c1-510cc79660ac" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="0216d80d-55b8-4b3e-a187-6e8536fa5902" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="a645bdf1-8071-4555-b862-9f30729946e7" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="6b363dca-4b7b-45f3-a094-50df1f3b6fb7" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="0ee36d95-6f82-49e3-aaed-52fada95c460" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R6</name> <mac type="String">00:C0:10:64:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420"> <name type="String">VLAN-R6</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">100</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="410b3e8d-36a6-41b5-821e-9ee93496ea7a" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R6</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.16.100.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.16.100.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">2596329041</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="c74e6630-4c22-46a1-bd5a-9a18c361199f" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="32278720-9728-4c1e-98a1-c7a41ccf1f83" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="f020117b-0c7f-4da8-a1ae-0fca36b0caad" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-8</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-8</name> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-8</name> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="a360ad81-4163-41db-b64f-bc1af27777d5" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-10</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="5d8e54de-002f-41c6-aac8-aff822bb0f7e" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-10</name> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="8a334019-95aa-49f2-80dd-08bd013b6f6c" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-8</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="45915d75-f382-4032-821f-233d11a38c11" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-10</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="10429e22-34bc-4ae5-b85f-3089635b6eb0" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-8</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="7dad7c5d-84ac-4f54-ab59-fd45367fbb53" version="6.70.420"> <trafficMaps type="ListNode"> <Ixia.Aptixia.StackManager.MeshingTrafficMap type="Ixia.Aptixia.StackManager.MeshingTrafficMap" objectid="17371506-2053-47a1-9b65-5422bcd36666" version="6.70.420"> <name type="String">HTTPClient1!Traffic2_HTTPServer1</name> <configMapFilename type="String">HTTPClient1Script.configmap</configMapFilename> <sourceActivityId type="Int">0</sourceActivityId> <ipPreference type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference">2</ipPreference> <portRangesString type="String" /> <meshingType type="Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType">2</meshingType> <destinationActivityId type="Int">0</destinationActivityId> </Ixia.Aptixia.StackManager.MeshingTrafficMap> </trafficMaps> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-4</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="424d5c6a-3bd8-4c5f-86af-ad84753fa410" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="076f9c54-cda8-4c68-a9c8-f14550cab1ae" version="6.70.420"> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420"> <name type="String">server network</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="4dfec118-30e8-4494-b7c7-e28518e7848a" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="123fecc5-cb5e-43e9-92a1-b053dc56d0f3" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="35ff711b-53f7-4c74-9e8b-98d35adaa6bf" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R2</name> <mac type="String">00:98:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420"> <name type="String">VLAN-R2</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="b85b184d-9bb4-48c2-a029-e633fee7a3c8" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R2</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">152.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">152.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="57fa3f41-7695-42d7-ac26-68924bb1e8bb" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="b2c21c73-bfe3-4fbc-9804-b5a8b307d893" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-2</name> <ixLoadRestObjectId type="Int">10</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-2</name> <ixLoadRestObjectId type="Int">9</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-2</name> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="993e33c6-e1f7-4967-982e-82a032f8c61a" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-4</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="36ca84d7-ff44-45b7-b75d-aec38b753161" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-4</name> <ixLoadRestObjectId type="Int">14</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="25c5acdd-9dd3-4802-93b6-b10651820b66" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-2</name> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="6259328b-97c2-4390-8ab1-f16bf3459219" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-4</name> <ixLoadRestObjectId type="Int">16</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="3eedf749-efa4-43a0-87ae-e110a77c88d4" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-2</name> <ixLoadRestObjectId type="Int">17</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="284f9992-65d8-4027-a155-709f1965f892" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-1</name> <ixLoadRestObjectId type="Int">18</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="f65f12f2-018c-46f5-a9c5-a1f6f7151909" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="60b1273d-78d3-4813-8cea-ec9a7101b8a3" version="6.70.420"> <ixLoadRestObjectId type="Int">7</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420"> <name type="String">server network_1</name> <category type="String" /> <stack type="Ixia.Aptixia.StackManager.L1EthernetPlugin" objectid="9280ae7b-1935-4fb1-8a86-522e739d7d13" version="6.70.420"> <autoNegotiate type="Bool">1</autoNegotiate> <speed type="String">k100FD</speed> <advertise10Half type="Bool">1</advertise10Half> <advertise10Full type="Bool">1</advertise10Full> <advertise100Half type="Bool">1</advertise100Half> <advertise100Full type="Bool">1</advertise100Full> <advertise1000Full type="Bool">1</advertise1000Full> <advertise10000Full type="Bool">1</advertise10000Full> <cardDualPhy type="Ixia.Aptixia.StackManager.DualPhyPlugin" objectid="3158f964-1bf1-4ba7-b2d5-a0f2174b233f" version="6.70.420"> <medium type="String">auto</medium> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardDualPhy> <cardElm type="Ixia.Aptixia.StackManager.EthernetELMPlugin" objectid="454249a6-64c1-41d4-b0ff-84b288651087" version="6.70.420"> <negotiateMasterSlave type="Bool">1</negotiateMasterSlave> <negotiationType type="String">master</negotiationType> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </cardElm> <enableFlowControl type="Bool">0</enableFlowControl> <directedAddress type="String">01:80:C2:00:00:01</directedAddress> <dataCenter type="Ixia.Aptixia.StackManager.DataCenterSettings" objectid="3d790b32-9ee7-4e44-b63f-cfab800dea84" version="6.70.420"> <dcSupported type="Bool">1</dcSupported> <dcEnabled type="Bool">0</dcEnabled> <dcFlowControl type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType">0</dcFlowControl> <dcMode type="Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode">2</dcMode> <dcPfcMapping type="IntList" /> <dcPfcPauseEnable type="Bool">0</dcPfcPauseEnable> <dcPfcPauseDelay type="Int">1</dcPfcPauseDelay> <ixLoadRestObjectId type="Int">15</ixLoadRestObjectId> </dataCenter> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.L2EthernetPlugin type="Ixia.Aptixia.StackManager.L2EthernetPlugin" objectid="c3e18bb9-4bf8-4bfc-a308-6a155469a0ee" version="6.70.420"> <macRangeList type="ListNode"> <Ixia.Aptixia.StackManager.MacRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">MAC-R8</name> <mac type="String">00:C0:28:28:14:00</mac> <incrementBy type="String">00:00:00:00:00:01</incrementBy> <mtu type="Int">1500</mtu> <count type="Int">1</count> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420"> <name type="String">VLAN-R8</name> <enabled type="Bool">0</enabled> <firstId type="Int">1</firstId> <incrementStep type="Int">32</incrementStep> <increment type="Int">1</increment> <uniqueCount type="Int">4094</uniqueCount> <priority type="Int">0</priority> <tpid type="String">0x8100</tpid> <innerEnable type="Bool">0</innerEnable> <innerFirstId type="Int">1</innerFirstId> <innerIncrementStep type="Int">1</innerIncrementStep> <innerIncrement type="Int">1</innerIncrement> <innerUniqueCount type="Int">4094</innerUniqueCount> <innerPriority type="Int">0</innerPriority> <idIncrMode type="Int">1</idIncrMode> <innerTpid type="String">0x8100</innerTpid> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </vlanRange> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacRange> </macRangeList> <vlanRangeList type="ListNode"> <Ixia.Aptixia.StackManager.VlanIdRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> </vlanRangeList> <childrenList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Plugin type="Ixia.Aptixia.StackManager.IpV4V6Plugin" objectid="2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5" version="6.70.420"> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420"> <enabled type="Bool">1</enabled> <name type="String">IP-R8</name> <ipType type="String">IPv4</ipType> <ipAddress type="String">192.40.40.20</ipAddress> <prefix type="Int">24</prefix> <incrementBy type="String">0.0.0.1</incrementBy> <count type="Int">1</count> <autoCountEnabled type="Bool">0</autoCountEnabled> <gatewayAddress type="String">192.40.40.10</gatewayAddress> <gatewayIncrement type="String">0.0.0.0</gatewayIncrement> <gatewayIncrementMode type="String">perSubnet</gatewayIncrementMode> <enableGatewayArp type="Bool">0</enableGatewayArp> <generateStatistics type="Bool">0</generateStatistics> <mss type="Int">1460</mss> <randomizeAddress type="Bool">0</randomizeAddress> <randomizeSeed type="Int">463911585</randomizeSeed> <autoMacGeneration type="Bool">1</autoMacGeneration> <macRange type="Ixia.Aptixia.StackManager.MacRange" objectid="95df1613-0cfc-45b5-a68e-e06ecd5b6cdf" version="6.70.420" /> <vlanRange type="Ixia.Aptixia.StackManager.VlanIdRange" objectid="90089481-45db-46c9-bb9b-639781adbde7" version="6.70.420" /> <atmRange type="Ixia.Aptixia.StackManager.AtmRange" objectid="00000000-0000-0000-0000-000000000000" /> <pvcRange type="Ixia.Aptixia.StackManager.PvcRange" objectid="00000000-0000-0000-0000-000000000000" /> <autoIpTypeEnabled type="Bool">0</autoIpTypeEnabled> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Range> </rangeList> <rangeGroups type="ListNode"> <Ixia.Aptixia.StackManager.RangeGroup type="Ixia.Aptixia.StackManager.RangeGroup" objectid="389909e0-120c-4ea7-857f-69e5981ba867" version="6.70.420"> <name type="String">DistGroup1</name> <distribType type="Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType">0</distribType> <rangeList type="ListNode"> <Ixia.Aptixia.StackManager.IpV4V6Range type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> </rangeList> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.RangeGroup> </rangeGroups> <childrenList type="ListNode" /> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">IP-11</name> <ixLoadRestObjectId type="Int">13</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpV4V6Plugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">MAC/VLAN-11</name> <ixLoadRestObjectId type="Int">12</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.L2EthernetPlugin> </childrenList> <extensionList type="ListNode" /> <dscMode type="Bool">0</dscMode> <name type="String">Ethernet-11</name> <ixLoadRestObjectId type="Int">11</ixLoadRestObjectId> </stack> <globalPluginList type="ListNode"> <Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type="Ixia.Aptixia.StackManager.IxLoadSettingsPlugin" objectid="82f06e5c-e227-4c7b-9b89-c4495858f1c1" version="1.0.0"> <teardownInterfaceWithUser type="Bool">0</teardownInterfaceWithUser> <interfaceBehavior type="Int">0</interfaceBehavior> <name type="String">Settings-13</name> <ixLoadRestObjectId type="Int">19</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSettingsPlugin> <Ixia.Aptixia.StackManager.DnsPlugin type="Ixia.Aptixia.StackManager.DnsPlugin" objectid="b4947db2-ab64-441c-81df-d6961888df99" version="6.70.420"> <domain type="String" /> <timeout type="Int">30000</timeout> <nameServerList type="ListNode" /> <searchList type="ListNode" /> <hostList type="ListNode" /> <name type="String">DNS-13</name> <ixLoadRestObjectId type="Int">20</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.DnsPlugin> <Ixia.Aptixia.StackManager.FilterPlugin type="Ixia.Aptixia.StackManager.FilterPlugin" objectid="76a42df0-2980-40cb-a135-8afd39ffa5a2" version="6.70.420"> <auto type="Bool">1</auto> <all type="Bool">0</all> <pppoecontrol type="Bool">0</pppoecontrol> <pppoenetwork type="Bool">0</pppoenetwork> <isis type="Bool">0</isis> <ip type="String" /> <tcp type="String" /> <udp type="String" /> <mac type="String" /> <icmp type="String" /> <name type="String">Filter-11</name> <ixLoadRestObjectId type="Int">21</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.FilterPlugin> <Ixia.Aptixia.StackManager.TCPPlugin type="Ixia.Aptixia.StackManager.TCPPlugin" objectid="34244aba-2937-43a8-900b-7821e096b69a" version="6.70.420"> <bestPerfSettings type="Bool">0</bestPerfSettings> <accept_ra_all type="Bool">0</accept_ra_all> <tcp_abort_on_overflow type="Bool">0</tcp_abort_on_overflow> <tcp_adv_win_scale type="Int">2</tcp_adv_win_scale> <tcp_app_win type="Int">31</tcp_app_win> <tcp_bic type="Int">0</tcp_bic> <tcp_bic_fast_convergence type="Int">1</tcp_bic_fast_convergence> <tcp_bic_low_window type="Int">14</tcp_bic_low_window> <tcp_dsack type="Bool">1</tcp_dsack> <tcp_ecn type="Bool">0</tcp_ecn> <tcp_fack type="Bool">1</tcp_fack> <tcp_fin_timeout type="Int">60</tcp_fin_timeout> <tcp_frto type="Int">0</tcp_frto> <tcp_keepalive_intvl type="Int">7200</tcp_keepalive_intvl> <tcp_keepalive_probes type="Int">75</tcp_keepalive_probes> <tcp_keepalive_time type="Int">9</tcp_keepalive_time> <tcp_low_latency type="Int">0</tcp_low_latency> <tcp_max_orphans type="Int">8192</tcp_max_orphans> <tcp_max_syn_backlog type="Int">1024</tcp_max_syn_backlog> <tcp_max_tw_buckets type="Int">180000</tcp_max_tw_buckets> <tcp_mem_low type="Int">24576</tcp_mem_low> <tcp_mem_pressure type="Int">32768</tcp_mem_pressure> <tcp_mem_high type="Int">49152</tcp_mem_high> <tcp_moderate_rcvbuf type="Int">0</tcp_moderate_rcvbuf> <tcp_no_metrics_save type="Bool">0</tcp_no_metrics_save> <tcp_orphan_retries type="Int">0</tcp_orphan_retries> <tcp_reordering type="Int">3</tcp_reordering> <tcp_retrans_collapse type="Bool">1</tcp_retrans_collapse> <tcp_retries1 type="Int">3</tcp_retries1> <tcp_retries2 type="Int">15</tcp_retries2> <tcp_rfc1337 type="Bool">0</tcp_rfc1337> <tcp_rmem_min type="Int">4096</tcp_rmem_min> <tcp_rmem_default type="Int">1024</tcp_rmem_default> <tcp_rmem_max type="Int">262144</tcp_rmem_max> <tcp_sack type="Bool">1</tcp_sack> <tcp_stdurg type="Bool">0</tcp_stdurg> <tcp_synack_retries type="Int">5</tcp_synack_retries> <tcp_syn_retries type="Int">5</tcp_syn_retries> <tcp_timestamps type="Bool">1</tcp_timestamps> <tcp_tw_recycle type="Bool">1</tcp_tw_recycle> <tcp_tw_reuse type="Bool">0</tcp_tw_reuse> <tcp_vegas_alpha type="Int">2</tcp_vegas_alpha> <tcp_vegas_beta type="Int">6</tcp_vegas_beta> <tcp_vegas_cong_avoid type="Int">0</tcp_vegas_cong_avoid> <tcp_vegas_gamma type="Int">2</tcp_vegas_gamma> <tcp_westwood type="Int">0</tcp_westwood> <tcp_window_scaling type="Bool">0</tcp_window_scaling> <ip_no_pmtu_disc type="Bool">1</ip_no_pmtu_disc> <tcp_wmem_min type="Int">4096</tcp_wmem_min> <tcp_wmem_default type="Int">1024</tcp_wmem_default> <tcp_wmem_max type="Int">262144</tcp_wmem_max> <tcp_ipfrag_time type="Int">30</tcp_ipfrag_time> <tcp_port_min type="Int">1024</tcp_port_min> <tcp_port_max type="Int">65535</tcp_port_max> <tcp_rto_min type="Int">1000</tcp_rto_min> <tcp_rto_max type="Int">120000</tcp_rto_max> <tcp_tw_rfc1323_strict type="Bool">0</tcp_tw_rfc1323_strict> <udp_port_randomization type="Bool">0</udp_port_randomization> <disable_min_max_buffer_size type="Bool">1</disable_min_max_buffer_size> <llm_hdr_gap type="Int">8</llm_hdr_gap> <llm_hdr_gap_ns type="Int">10</llm_hdr_gap_ns> <inter_packet_granular_delay type="Double">0</inter_packet_granular_delay> <delayed_acks type="Bool">1</delayed_acks> <accept_ra_default type="Bool">0</accept_ra_default> <rps_needed type="Bool">0</rps_needed> <delayed_acks_segments type="Int">0</delayed_acks_segments> <delayed_acks_timeout type="Int">0</delayed_acks_timeout> <tcp_large_icwnd type="Int">0</tcp_large_icwnd> <tcp_mgmt_rmem type="Int">87380</tcp_mgmt_rmem> <tcp_mgmt_wmem type="Int">32768</tcp_mgmt_wmem> <adjust_tcp_buffers type="Bool">1</adjust_tcp_buffers> <name type="String">TCP-13</name> <ixLoadRestObjectId type="Int">22</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.TCPPlugin> <Ixia.Aptixia.StackManager.GratArpPlugin type="Ixia.Aptixia.StackManager.GratArpPlugin" objectid="2551de11-5f59-49dc-92be-266b8bf8fe90" version="6.70.420"> <enabled type="Bool">1</enabled> <forwardGratArp type="Bool">0</forwardGratArp> <rateControlEnabled type="Bool">0</rateControlEnabled> <maxFramesPerSecond type="Int">0</maxFramesPerSecond> <name type="String">GratARP-11</name> <ixLoadRestObjectId type="Int">23</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.GratArpPlugin> <Ixia.Aptixia.StackManager.MeshingPlugin type="Ixia.Aptixia.StackManager.MeshingPlugin" objectid="6d9cab2d-989f-4bad-9595-ffefba7bc84a" version="6.70.420"> <trafficMaps type="ListNode" /> <activityRangeMapInfoList type="ListNode" /> <name type="String">Meshing-5</name> <ixLoadRestObjectId type="Int">24</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MeshingPlugin> </globalPluginList> <portList type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.IPSecPortGroupData type="Ixia.Aptixia.StackManager.IPSecPortGroupData" objectid="dd86f951-1b71-4f94-930e-1f690af65f5a" version="6.70.0"> <role type="String">Initiator</role> <associates type="ListNode" /> <overrideGlobalOptions type="Bool">0</overrideGlobalOptions> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <maxInitiationRate type="Int">50</maxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <maxPendingTunnels type="Int">50</maxPendingTunnels> <teardownRate type="Int">10</teardownRate> <enableESPPerStreamStats type="Bool">0</enableESPPerStreamStats> <enableESPReplayStats type="Bool">0</enableESPReplayStats> <activities type="ListNode" /> <pcpuLogLevel type="String">0</pcpuLogLevel> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecPortGroupData> </typeSpecificData> <virtualMode type="Bool">0</virtualMode> <allowedVirtualModeTypes type="Ixia.RpFramework.Server.Core.ShadowedPropertyStringList" /> <doOwnership type="Bool">0</doOwnership> <branchToNicMap type="ListNode" /> <cpuAggregation type="Bool">0</cpuAggregation> <activePort type="String" /> <networkLayersManager type="Ixia.Aptixia.StackManager.NetworkLayersManager" objectid="2dc65e0c-3a5a-4c59-a3a7-d1cf336fa422" version="6.70.420"> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </networkLayersManager> <ixLoadRestObjectId type="Int">8</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.PortGroup> </portGroupList> <externalProperties type="Ixia.Aptixia.StackManager.ExternalPropertyManager" objectid="1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e" version="6.70.420"> <properties type="ListNode"> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="145671ff-93a5-4ecc-8c83-59b2c3c67be9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatLTEUEUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9f07a941-ad2f-46b0-8c75-911862a21039" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SixRdRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a221ab5c-faae-4940-bfad-5d41d44f1427" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">L2tpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPServerRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="f252cff3-b919-4e74-9f62-9e9c5ab5d324" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MobileSubscribersRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="500dfc8b-2e6a-401f-84c0-f6907f60c00e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSgsnS3RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="693cb176-f3d8-4073-8a02-fabdc0bdd3fb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPRange_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ec983bf9-07f0-46b2-99a0-354114f42501" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EmulatedRouterRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5d0f0eb8-40af-4292-8ff2-a57e7903601d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PppoxRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="653fae09-ba19-443c-8f8b-9483c0b86b9a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGAPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c886be8c-c207-4bb4-90d5-17be54556d58" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatRNCIuPSUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="00e75214-5166-406b-90e5-2b83567ae5cf" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPNGUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="50d10ee7-45ce-46d2-ae8d-ecd3b1806067" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S5S8_SGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c2f310a4-6ea4-4459-be3b-f3b3365c590a" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPGRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7e458bed-5e36-42d6-812d-3794be52766e" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPcrfRange_S5S8_PGW</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7d225fda-6432-4de3-9750-c19bbc957703" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DSLiteRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="e25dd669-ffc5-493d-a2b5-fd5627bf2ee8" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPSGSNRangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">SlaacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="25699a2c-ab22-417b-9072-894523e98008" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="482a10c3-0ac7-44d9-9fa9-b43ba3a9901d" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DHCPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="a0f03753-923d-4421-8c4f-0ed78f00fc44" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">AtmRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="fb5cd68e-b4b0-4fd4-ae18-4100c0035642" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatMMEApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="62677b6a-080e-4cc3-919b-71fa90ae410f" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBUuApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="2e0fd6e3-470e-48df-ab8d-cc21b9d80393" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">GTPSUERange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="175f3104-0d2a-44f9-b712-fed3b170f8cb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IpV4V6Range</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d1f37e1e-db44-4bac-acb8-b242dee8e371" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MacRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="61ccdebc-84e6-464d-be14-2b3ddedab9d2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">DualStackIPRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d0678cd8-998e-42ab-8f0d-bfcb5370eac2" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPUERange_S2a_TWAN</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="d8350364-51c6-4a1b-af9f-72c9c235a636" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatSGSNIuPSApnRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="613d02a1-db1e-415d-b4bb-8b73b4477cf4" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">IxCatENodeBSimUeRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="9a41f718-b55e-44c7-a0cc-b1fcf8204c20" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6dRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="4c26fe62-a63d-4c40-8e15-c58ad8fba8d0" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">UERangeBase</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="5c2ca63f-3335-4ab7-963e-440817448538" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPMmeS10RangeUe</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="51a5eccc-a68d-4730-8a48-32019c547c28" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">S6aRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="3010c4ad-f31e-4676-9e61-bb25cf9c1bbb" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">BmScRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="ef1677e4-f390-4a78-b61a-f7650cf5faea" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">MBmsGwRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">PptpRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> <Ixia.Aptixia.StackManager.ExternalPropertyInfo type="Ixia.Aptixia.StackManager.ExternalPropertyInfo" objectid="c648ad96-ef63-4c6d-b77e-586fece09b3b" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <targetType type="String">EGTPPMIPHostRange</targetType> <valueType type="String">ExternalValueBoolean</valueType> <description type="String">Enable collection of interface statistics on this range</description> </Ixia.Aptixia.StackManager.ExternalPropertyInfo> </properties> <values type="ListNode"> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="6804ae67-3bd7-471b-8796-ee1e4773c2f1" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="a3559674-8d95-4020-90b3-b42eacaef105" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7efcd429-2c48-41bd-bdc5-489dbfcfc49a" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="a63d8276-65bc-4bc2-8202-6461c6399ef9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="1d9bf537-0c3d-4fdf-9b85-0a622cc77649" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="09d7b134-2921-4759-bbdb-ff3a5a1966d7" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0cd9f099-242e-4b03-965f-d343c60181e6" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="3011c8a8-a9fd-4b76-a27d-91948113ed4f" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="503aa008-2481-419f-a223-c90b2c25c17e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="0b8d2c01-19ac-4f28-924e-660676d978da" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.MacRange" objectid="f91c9f52-8150-4d0f-b657-498ed241835c" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="41c694b3-bb55-48fe-9604-8b003540242f" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </value> <enabled type="Bool">0</enabled> <ixLoadRestObjectId type="Int">4</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="dc4d759f-e4ac-4498-9296-92fd26a83bf9" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="0304987f-176a-4aea-a3cb-c117279fe0ea" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="3b496ea9-e90a-48e5-b01a-adfeb9940e5e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">5</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> <Ixia.Aptixia.StackManager.ExternalProperty type="Ixia.Aptixia.StackManager.ExternalProperty" objectid="72bbb3e6-5bae-448e-bcda-ba87a76fa477" version="6.70.420"> <propertyName type="String">Publish Statistics</propertyName> <target type="Ixia.Aptixia.StackManager.IpV4V6Range" objectid="ba01e944-e779-4a36-b3bd-26d1c3b0ef21" version="6.70.420" /> <value type="Ixia.Aptixia.StackManager.ExternalValueBoolean" objectid="7c3ea465-5392-4894-b8a4-0138f48acf8e" version="6.70.420"> <value type="Bool">0</value> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </value> <enabled type="Bool">1</enabled> <ixLoadRestObjectId type="Int">6</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ExternalProperty> </values> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </externalProperties> <availableNetworkTimelines type="ListNode" /> <typeSpecificData type="ListNode"> <Ixia.Aptixia.StackManager.MacSessionData type="Ixia.Aptixia.StackManager.MacSessionData" objectid="a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions">2</duplicateCheckingScope> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.MacSessionData> <Ixia.Aptixia.StackManager.IpSessionData type="Ixia.Aptixia.StackManager.IpSessionData" objectid="34a78d72-1fc5-4875-9fe1-b4db66b1b4c4" version="6.70.420"> <duplicateCheckingScope type="Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions">2</duplicateCheckingScope> <enableGatewayArp type="Bool">0</enableGatewayArp> <gatewayArpRequestRate type="Int">300</gatewayArpRequestRate> <maxOutstandingGatewayArpRequests type="Int">300</maxOutstandingGatewayArpRequests> <ignoreUnresolvedIPs type="Bool">0</ignoreUnresolvedIPs> <sendAllRequests type="Bool">0</sendAllRequests> <individualARPTimeOut type="Int">500</individualARPTimeOut> <ixLoadRestObjectId type="Int">2</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IpSessionData> <Ixia.Aptixia.StackManager.IxLoadSessionData type="Ixia.Aptixia.StackManager.IxLoadSessionData" objectid="1e24447f-69f1-4030-8b2d-25a18c7160ca" version="1.0.0"> <portGroupList type="ListNode"> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="669af012-d572-439d-9c70-cfbacea0fe7f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="c4ecfc60-64ac-4dc2-9410-e0f58d84f229" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="865be042-32d5-426a-9e75-0908c943801f" version="6.70.420" /> <Ixia.Aptixia.StackManager.PortGroup type="Ixia.Aptixia.StackManager.PortGroup" objectid="6c1a9dc4-bc8e-48ad-982f-956b0561e947" version="6.70.420" /> </portGroupList> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IxLoadSessionData> <Ixia.Aptixia.StackManager.ImpairSessionData type="Ixia.Aptixia.StackManager.ImpairSessionData" objectid="94b53c2c-0747-41c2-838d-0e0e15f31766" version="6.70.13"> <profiles type="ListNode"> <Ixia.Aptixia.StackManager.ImpairProfile type="Ixia.Aptixia.StackManager.ImpairProfile" objectid="90dd3511-93c1-49fa-8e38-db774db9fe17" version="6.70.13"> <name type="String">DefaultProfile</name> <defaultp type="Bool">1</defaultp> <seed type="Int">0</seed> <addDelay type="Bool">1</addDelay> <delay type="Int">20</delay> <jitter type="Int">0</jitter> <addDrop type="Bool">0</addDrop> <drop type="Double">10</drop> <addDropSequence type="Bool">0</addDropSequence> <dropSequenceSkip type="Int">10</dropSequenceSkip> <dropSequenceLength type="Int">1</dropSequenceLength> <addReorder type="Bool">0</addReorder> <gap type="Int">10</gap> <reorder type="Int">20</reorder> <reorderLength type="Int">1</reorderLength> <addReorderPI type="Bool">0</addReorderPI> <reorderPISkip type="Int">10</reorderPISkip> <reorderPILength type="Int">1</reorderPILength> <reorderPIInterval type="Int">1</reorderPIInterval> <reorderPITimeout type="Int">1000</reorderPITimeout> <addDuplicate type="Bool">0</addDuplicate> <duplicate type="Double">10</duplicate> <addFragment type="Bool">0</addFragment> <fragment type="Double">10</fragment> <mtu type="Int">1000</mtu> <addFragmentSequence type="Bool">0</addFragmentSequence> <fragmentSequenceSkip type="Int">10</fragmentSequenceSkip> <fragmentSequenceLength type="Int">1</fragmentSequenceLength> <mtuSequence type="Int">1000</mtuSequence> <sendFragmentsInReverseOrder type="Bool">0</sendFragmentsInReverseOrder> <sendFirstFragmentOnly type="Bool">0</sendFirstFragmentOnly> <sendOverlappingFragments type="Bool">0</sendOverlappingFragments> <addBandwidth type="Bool">0</addBandwidth> <bandwidth type="Double">1</bandwidth> <bandwidthUnits type="String">mbps</bandwidthUnits> <addBandwidthIn type="Bool">0</addBandwidthIn> <bandwidthIn type="Double">1</bandwidthIn> <bandwidthUnitsIn type="String">mbps</bandwidthUnitsIn> <destinationIp type="String">any</destinationIp> <sourceIp type="String">any</sourceIp> <sourcePort type="Int">0</sourcePort> <destinationPort type="Int">0</destinationPort> <protocol type="String">any</protocol> <typeOfService type="String">any</typeOfService> <addTcpFlagsFilter type="Bool">0</addTcpFlagsFilter> <selectTcpFlags type="String">SYN;RST;ACK</selectTcpFlags> <expectTcpFlags type="String">SYN</expectTcpFlags> <impairOrder type="String">Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth</impairOrder> </Ixia.Aptixia.StackManager.ImpairProfile> </profiles> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.ImpairSessionData> <Ixia.Aptixia.StackManager.IPSecSessionData type="Ixia.Aptixia.StackManager.IPSecSessionData" objectid="bd2f0ea4-4278-49c8-9600-18cd2c8ed639" version="6.70.0"> <ipsecTunnelSetup type="Ixia.Aptixia.StackManager.IPSecTunnelSetup" objectid="1bacc8a0-dda0-4e0c-b013-4d8618dc80b6" version="6.70.0"> <tunnelSetupTimeout type="Int">30</tunnelSetupTimeout> <tunnelRetransmissionTimeout type="Int">30</tunnelRetransmissionTimeout> <numRetries type="Int">0</numRetries> <retryInterval type="Int">10</retryInterval> <retryDelay type="Int">10</retryDelay> <testType type="String">P2D</testType> <logLevel type="String">3</logLevel> <sendCiscoVid type="Bool">0</sendCiscoVid> <useMaxInitiationRate type="Bool">0</useMaxInitiationRate> <useMaxPendingTunnels type="Bool">0</useMaxPendingTunnels> <enableRekey type="Bool">1</enableRekey> <rekeyRetries type="Int">3</rekeyRetries> <rekeyFuzzPercentage type="Int">0</rekeyFuzzPercentage> <rekeyMargin type="Int">10</rekeyMargin> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecTunnelSetup> <ipsecCertificates type="Ixia.Aptixia.StackManager.IPSecCertificates" objectid="2e324324-bf74-4ad3-afbb-62e44f01c31a" version="6.70.0"> <uniqueCert type="Bool">0</uniqueCert> <certSource type="String">kNewCert</certSource> <caURL type="String" /> <caDN type="String" /> <certSubjectDN type="String" /> <certSubjectAltDN type="String" /> <remoteIkeId type="String" /> <bitSize type="String">k512</bitSize> <saveCert type="Bool">1</saveCert> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <certParentFolder type="String">C:\Program Files\Ixia\CachedCerts</certParentFolder> <certNumber type="String" /> <caCertNumber type="String" /> <earlyExpDate type="String" /> <lateExpDate type="String" /> <usePerRangeCertNameExp type="Bool">0</usePerRangeCertNameExp> <checkCrl type="Bool">0</checkCrl> <crlOverrideEnable type="Bool">0</crlOverrideEnable> <crlOverrideUrl type="String" /> <checkOcsp type="Bool">0</checkOcsp> <ocspOverrideEnable type="Bool">0</ocspOverrideEnable> <ocspOverrideUrl type="String" /> <unknownIsRevoked type="Bool">0</unknownIsRevoked> <certProto type="String">kSCEP</certProto> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertificates> <ipsecCertManager type="Ixia.Aptixia.StackManager.IPSecCertManager" objectid="f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897" version="6.70.0"> <caURL type="String" /> <caDN type="String">CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com</caDN> <certSubjectDN type="String">CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia</certSubjectDN> <keyGenAlgo type="String">kRSA_512</keyGenAlgo> <cacheCertFolder type="String">C:\Program Files\Ixia\CachedCerts</cacheCertFolder> <caKeyFile type="String">C:\Program Files\Ixia\ca-priv.key</caKeyFile> <caCrtFile type="String">C:\Program Files\Ixia\ca-cert.crt</caCrtFile> <certNumber type="Int">1</certNumber> <certProto type="String">kSCEP</certProto> <createRootCA type="Bool">0</createRootCA> <uniqueCert type="Bool">0</uniqueCert> <descFilePath type="String">C:\Program Files\Ixia\CachedCerts\sample.desc</descFilePath> <useDescFile type="Bool">0</useDescFile> <ixLoadRestObjectId type="Int">3</ixLoadRestObjectId> </ipsecCertManager> <eapSimTuples type="ListNode" /> <eapAkaTuples type="ListNode" /> <maxInitiationRate type="Int">50</maxInitiationRate> <maxPendingTunnels type="Int">50</maxPendingTunnels> <negotiationStartDelay type="Int">0</negotiationStartDelay> <teardownRate type="Int">10</teardownRate> <burstInitiation type="Bool">0</burstInitiation> <parallelInitiation type="Bool">0</parallelInitiation> <enableWildcardTsi type="Bool">0</enableWildcardTsi> <enableWildcardTsr type="Bool">0</enableWildcardTsr> <enablePlutoWildcardTsi type="Bool">0</enablePlutoWildcardTsi> <enablePlutoModeCfgWildcardTsr type="Bool">1</enablePlutoModeCfgWildcardTsr> <enablePlutoS2SWildcardTsr type="Bool">0</enablePlutoS2SWildcardTsr> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.IPSecSessionData> </typeSpecificData> <statViewManager type="Ixia.Aptixia.StackManager.StatViewManager" objectid="7256ce27-286c-475d-b198-09b4ae306f73" version="6.70.420"> <enableStats type="Bool">1</enableStats> <enableOverviewStats type="Bool">1</enableOverviewStats> <enablePerSessionStats type="Bool">1</enablePerSessionStats> </statViewManager> <waitForLinkUp type="Bool">0</waitForLinkUp> <overloadProtection type="Bool">1</overloadProtection> <ixLoadRestObjectId type="Int">1</ixLoadRestObjectId> </Ixia.Aptixia.StackManager.SMSession> </rpf></xml> - </_smSessionXml> - <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig"> - <xml type="str"></xml> - </_composerConfig> - <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig"> - <xml type="str"><?xml version="1.0" encoding="utf-16"?> <Config> <configs Version="5.0" /> </Config></xml> - </_quickTestConfig> - <lastApiUniqueId type="int">15385</lastApiUniqueId> - <version type="str">8.20.0.273</version> - <name type="str">HTTP-vFW_IPv4_4Ports-CC-64K.rxf</name> - <comment type="str"></comment> - <path type="str">F:\IXIA-TESTS</path> - <last type="str">HTTP-vFW_IPv4_4Ports-CC-1B.rxf</last> - <activeTest type="str">Test1</activeTest> - <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain"> - <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/> - <_apiUniqueId type="int">12991</_apiUniqueId> - <chassisMap type="dict"/> - <hiddenChassis type="NoneType">None</hiddenChassis> - </chassisChain> - <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/> - <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/> - <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/> - <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/> - <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope"> - <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope"> - <name type="str">Test1</name> - <comment type="str"></comment> - <enableForceOwnership type="bool">False</enableForceOwnership> - <enableResetPorts type="bool">False</enableResetPorts> - <statsRequired type="int">1</statsRequired> - <enableConditionalView type="bool">False</enableConditionalView> - <conditionalViewType type="int">0</conditionalViewType> - <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/> - <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun> - <csvInterval type="int">4</csvInterval> - <networkFailureThreshold type="int">0</networkFailureThreshold> - <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions"> - <runMode type="int">1</runMode> - <collectScheme type="int">0</collectScheme> - <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage> - <captureRunAfter type="int">0</captureRunAfter> - <captureRunDuration type="int">0</captureRunDuration> - <_apiUniqueId type="int">12941</_apiUniqueId> - </captureViewOptions> - <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario"> - <item ver="[3, [1, [0, [0]]]]" type="ixScenario"> - <name type="str">TrafficFlow1</name> - <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn"> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Client</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic"> - <name type="str">HTTP client@client network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP client</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">newClientActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">12943</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">HTTP server_newServerActivity1</name> - <portMapPolicy type="str">portMesh</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="0"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="30" type="ixNetTraffic"> - <name type="str">HTTP server@server network</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="bool">True</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">HTTP server</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">newServerActivity1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="bool">False</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12972</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="str">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12973</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12987</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12988</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">12984</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12974</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12975</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12976</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12977</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">12978</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">12979</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">12980</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">12981</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">12982</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="1"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">3</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">12983</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12985</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12986</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">2</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12971</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange"> - <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId> - <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="3"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId> - <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="4"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="5"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="6"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">newServerActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12989</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ref="9"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12970</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12956</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="3"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="3"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="6"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="6"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12955</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="10"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">newServerActivity1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">0</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">1</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">1</httpVersion> - <keepAlive type="bool">False</keepAlive> - <maxPersistentRequests type="int">0</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">:80</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">:443</httpsProxy> - <browserEmulation type="int">1</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="bool">False</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12948</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12945</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12949</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">HTTP server_newServerActivity1:80</destination> - <pageObject type="str">/64k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="bool">False</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12946</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12947</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12950</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12951</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12952</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">12953</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">1</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12942</_apiUniqueId> - <uniqueID type="int">1</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange"> - <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId> - <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="11"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId> - <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="12"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="13"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="14"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">newClientActivity1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline"> - <name type="str">Timeline1</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">0</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portMesh</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12954</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="15"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">12940</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">12926</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="11"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="11"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="14"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="14"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portMesh</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12925</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="16"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">False</value> - </item> - </_tcpAccelerationAllowed> - </item> - <item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic"> - <name type="str">Traffic1@client network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Client</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Client</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic1</name> - <role type="str">Client</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="27" type="HTTP_Client_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPClient1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool"> - <seed type="int">1</seed> - <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/> - <_apiUniqueId type="int">15343</_apiUniqueId> - </cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"> - <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination"> - <name type="str">Traffic2_HTTPServer1</name> - <portMapPolicy type="str">portPairs</portMapPolicy> - <sameAs type="str"></sameAs> - <validPortMapPolicies type="list"> - <item type="str">portPairs</item> - <item type="str">portMesh</item> - <item type="str">customMesh</item> - </validPortMapPolicies> - <inUse type="bool">True</inUse> - <customPortMap type="NoneType">None</customPortMap> - <sourceCommunity ref="17"/> - <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="31" type="ixNetTraffic"> - <name type="str">Traffic2@server network_1</name> - <column type="NoneType">None</column> - <scenarioElementType type="str">netTraffic</scenarioElementType> - <enable type="int">1</enable> - <role type="str">Server</role> - <networkType type="str">ethernet</networkType> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <activeRole type="str">Server</activeRole> - <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/> - <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/> - <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">Traffic2</name> - <role type="str">Server</role> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <payload type="NoneType">None</payload> - <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent"> - <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="22" type="HTTP_Server_plugin"> - <enable type="int">1</enable> - <name type="str">HTTPServer1</name> - <activityFunction type="str">ipTrafficAgent</activityFunction> - <needToRefreshStatViews type="bool">False</needToRefreshStatViews> - <activeRole type="NoneType">None</activeRole> - <loopValue type="int">1</loopValue> - <cmdListLoops type="int">0</cmdListLoops> - <cmdPercentagePool type="NoneType">None</cmdPercentagePool> - <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/> - <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/> - <flowPercentage type="float">100.0</flowPercentage> - <httpPort type="str">80</httpPort> - <httpsPort type="str">443</httpsPort> - <requestTimeout type="int">300</requestTimeout> - <minResponseDelay type="int">0</minResponseDelay> - <maxResponseDelay type="int">0</maxResponseDelay> - <acceptSslConnections type="int">0</acceptSslConnections> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <urlStatsCount type="int">10</urlStatsCount> - <rstTimeout type="int">100</rstTimeout> - <enableEsm type="int">0</enableEsm> - <esm type="int">1460</esm> - <enableTos type="int">0</enableTos> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableIntegrityCheck type="int">0</enableIntegrityCheck> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat> - <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader"> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15367</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader"> - <name type="str">404_PageNotFound</name> - <description type="str">Page not found</description> - <code type="int">404</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15368</_apiUniqueId> - </item> - </responseHeaderList> - <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">UserCookie</name> - <description type="str">Name of User</description> - <type type="int">2</type> - <mode type="int">3</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">firstName</name> - <value type="str">Joe</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">lastName</name> - <value type="str">Smith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15382</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject"> - <name type="str">LoginCookie</name> - <description type="str">Login name and password</description> - <type type="int">2</type> - <mode type="int">2</mode> - <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent"> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">name</name> - <value type="str">joesmith</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent"> - <name type="str">password</name> - <value type="str">foobar</value> - <path type="str"></path> - <maxAge type="str"></maxAge> - <domain type="str"></domain> - <other type="str"></other> - <objectID type="int">1</objectID> - </item> - </cookieContentList> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15383</_apiUniqueId> - </item> - </cookieList> - <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject"> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1b.html</page> - <response ver="[0, [1, [0, [0]]]]" oid="18" type="ixResponseHeader"> - <name type="str">200_OK</name> - <description type="str">OK</description> - <code type="str">200</code> - <mimeType type="str">text/plain</mimeType> - <dateMode type="int">2</dateMode> - <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue> - <dateIncrementEnable type="bool">False</dateIncrementEnable> - <dateIncrementBy type="int">5</dateIncrementBy> - <dateIncrementFor type="int">1</dateIncrementFor> - <dateZone type="str">GMT</dateZone> - <expirationMode type="int">0</expirationMode> - <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue> - <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue> - <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue> - <lastModifiedMode type="int">1</lastModifiedMode> - <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue> - <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable> - <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy> - <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor> - <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/> - <readOnly type="bool">True</readOnly> - <enableCustomPutResponse type="bool">False</enableCustomPutResponse> - <_apiUniqueId type="int">15379</_apiUniqueId> - </response> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1-1</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">1</chunkSize> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15369</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/4k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">4096-4096</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15370</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/8k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">8192-8192</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15371</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/16k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">16536-16536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15372</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/32k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">32768</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">4</objectID> - <_apiUniqueId type="int">15373</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/64k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">65536</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">5</objectID> - <_apiUniqueId type="int">15374</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/128k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">131072</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">6</objectID> - <_apiUniqueId type="int">15375</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/256k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">262144</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">7</objectID> - <_apiUniqueId type="int">15376</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/512k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">524288</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">8</objectID> - <_apiUniqueId type="int">15377</_apiUniqueId> - </item> - <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject"> - <page type="str">/1024k.html</page> - <response ref="18"/> - <payloadType type="str">range</payloadType> - <payloadSize type="str">1048576</payloadSize> - <payloadFile type="str"><specify file></payloadFile> - <cookie type="NoneType">None</cookie> - <customPayloadId type="int">-1</customPayloadId> - <Md5Option type="int">0</Md5Option> - <chunkSize type="str">512-1024</chunkSize> - <objectID type="int">9</objectID> - <_apiUniqueId type="int">15378</_apiUniqueId> - </item> - </webPageList> - <ServerCiphers type="str">DEFAULT</ServerCiphers> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <enableDHsupport type="int">0</enableDHsupport> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <dhParams type="str"></dhParams> - <tcpCloseOption type="int">0</tcpCloseOption> - <docrootfile type="str"></docrootfile> - <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject"> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">0</id> - <name type="str">AsciiCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">0</payloadmode> - <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue> - <hexPayloadValue type="str"></hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15380</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject"> - <id type="int">1</id> - <name type="str">HexCustomPayload</name> - <payloadPosition type="str">Start With</payloadPosition> - <payloadmode type="int">1</payloadmode> - <asciiPayloadValue type="str"></asciiPayloadValue> - <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue> - <repeat type="int">0</repeat> - <offset type="int">1</offset> - <readOnly type="bool">True</readOnly> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15381</_apiUniqueId> - </item> - </customPayloadList> - <enableMD5Checksum type="bool">False</enableMD5Checksum> - <integrityCheckOption type="str">Custom MD5</integrityCheckOption> - <uniqueID type="int">6</uniqueID> - <enableChunkEncoding type="bool">False</enableChunkEncoding> - <docrootChunkSize type="str">512-1024</docrootChunkSize> - <urlPageSize type="int">1024</urlPageSize> - <enableChunkedRequest type="bool">False</enableChunkedRequest> - <enableNewSslSupport type="bool">False</enableNewSslSupport> - <enableHTTP2 type="bool">False</enableHTTP2> - <dontExpectUpgrade type="bool">False</dontExpectUpgrade> - <disableMacValidation type="int">0</disableMacValidation> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15366</_apiUniqueId> - <commandIdCounter type="int">0</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">server network_1</name> - <role type="str">Server</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="19" type="ixNetworkRange"> - <_smRangeObjectId type="str">ba01e944-e779-4a36-b3bd-26d1c3b0ef21</_smRangeObjectId> - <name type="str">Network Range IP-R8 in server network_1 (192.40.40.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="20" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12961</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="19"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">389909e0-120c-4ea7-857f-69e5981ba867</_rangeGroupObjectId> - <_smPluginObjectId type="str">2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="20"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="21" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="21"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">669af012-d572-439d-9c70-cfbacea0fe7f</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="22"/> - <protocolAndType type="str">HTTP Server</protocolAndType> - <name type="str">HTTPServer1</name> - <enable type="bool">True</enable> - <timeline ref="7"/> - <customParameters type="NoneType">None</customParameters> - <role type="str">Server</role> - <activeRole type="str">Server</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15384</_apiUniqueId> - <_objectiveValue type="int">100</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="7"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15365</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="23" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15356</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="19"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="19"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="22"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="22"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Server</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Server</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">620</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15355</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="23"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </destinationCommunity> - <destinationAgentName type="str">HTTPServer1</destinationAgentName> - <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange"> - <item ver="[1, [1, [0, [0]]]]" type="ixIntRange"> - <intRange type="str">80</intRange> - <objectID type="int">0</objectID> - <iStartingValue type="int">80</iStartingValue> - <iCount type="int">1</iCount> - </item> - </portRangeList> - <count type="int">1</count> - </item> - </destinations> - <flowPercentage type="float">100.0</flowPercentage> - <maxSessions type="int">3</maxSessions> - <maxStreams type="int">1</maxStreams> - <dontUseUpgrade type="int">0</dontUseUpgrade> - <httpVersion type="int">0</httpVersion> - <keepAlive type="int">0</keepAlive> - <maxPersistentRequests type="int">1</maxPersistentRequests> - <followHttpRedirects type="int">0</followHttpRedirects> - <enableCookieSupport type="int">0</enableCookieSupport> - <maxPipeline type="int">1</maxPipeline> - <urlStatsCount type="int">10</urlStatsCount> - <enableHttpProxy type="int">0</enableHttpProxy> - <httpProxy type="str">0.0.0.0</httpProxy> - <enableHttpsProxy type="int">0</enableHttpsProxy> - <httpsProxy type="str">0.0.0.0</httpsProxy> - <browserEmulation type="int">3</browserEmulation> - <browserEmulationName type="str">Custom1</browserEmulationName> - <enableSsl type="int">0</enableSsl> - <sslVersion type="int">3</sslVersion> - <sslReuseMethod type="int">0</sslReuseMethod> - <sequentialSessionReuse type="int">0</sequentialSessionReuse> - <enablesslRecordSize type="int">0</enablesslRecordSize> - <validateCertificate type="int">0</validateCertificate> - <sslRecordSize type="str">16384</sslRecordSize> - <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify> - <enableUnidirectionalClose type="int">0</enableUnidirectionalClose> - <privateKeyPassword type="str"></privateKeyPassword> - <privateKey type="str"></privateKey> - <certificate type="str"></certificate> - <caCert type="str"></caCert> - <clientCiphers type="str">DEFAULT</clientCiphers> - <enableEsm type="int">0</enableEsm> - <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport> - <perHeaderPercentDist type="int">0</perHeaderPercentDist> - <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport> - <esm type="int">1460</esm> - <enableVlanPriority type="int">0</enableVlanPriority> - <vlanPriority type="int">0</vlanPriority> - <enableTos type="int">0</enableTos> - <tos type="int">0</tos> - <precedenceTOS type="int">0</precedenceTOS> - <delayTOS type="int">0</delayTOS> - <throughputTOS type="int">0</throughputTOS> - <reliabilityTOS type="int">0</reliabilityTOS> - <commandTimeout type="int">600</commandTimeout> - <commandTimeout_ms type="int">0</commandTimeout_ms> - <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession> - <enableAchieveCCFirst type="int">0</enableAchieveCCFirst> - <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC> - <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance> - <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig"> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand"> - <commandId type="int">-2</commandId> - <commandType type="str">START</commandType> - <cmdName type="str">Start</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">1</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15348</_apiUniqueId> - <destinationCommandIdx type="int">1</destinationCommandIdx> - </item> - </outputList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15345</_apiUniqueId> - </item> - <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand"> - <commandId type="int">1</commandId> - <commandType type="str">GET</commandType> - <cmdName type="str">Get 1</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"> - <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput"> - <name type="str">Output1</name> - <outputType type="int">0</outputType> - <destCmdId type="int">-3</destCmdId> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15349</_apiUniqueId> - <destinationCommandIdx type="int">2</destinationCommandIdx> - </item> - </outputList> - <destination type="str">Traffic2_HTTPServer1:80</destination> - <pageObject type="str">/64k.html</pageObject> - <abort type="str">None</abort> - <arguments type="str"></arguments> - <namevalueargs type="str"></namevalueargs> - <profile type="int">-1</profile> - <enableDi type="int">0</enableDi> - <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader> - <sendingChunkSize type="str">None</sendingChunkSize> - <sslProfile type="int">-1</sslProfile> - <method type="int">-1</method> - <useSsl type="int">0</useSsl> - <windowSize type="str">65536</windowSize> - <streamIden type="int">3</streamIden> - <pingFreq type="int">10</pingFreq> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15346</_apiUniqueId> - </item> - <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand"> - <commandId type="int">-3</commandId> - <commandType type="str">STOP</commandType> - <cmdName type="str">Stop</cmdName> - <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15347</_apiUniqueId> - </item> - </actionList> - <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString"> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept: */*</data> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15350</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Language: en-us</data> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15351</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">Accept-Encoding: gzip, deflate</data> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">15352</_apiUniqueId> - </item> - <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString"> - <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)</data> - <objectID type="int">3</objectID> - <_apiUniqueId type="int">15353</_apiUniqueId> - </item> - </headerList> - <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/> - <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/> - <cookieJarSize type="int">10</cookieJarSize> - <cookieRejectProbability type="float">0.0</cookieRejectProbability> - <ipPreference type="int">2</ipPreference> - <tcpCloseOption type="int">0</tcpCloseOption> - <piggybackAck type="int">1</piggybackAck> - <enableLargeHeader type="int">0</enableLargeHeader> - <maxHeaderLen type="int">1024</maxHeaderLen> - <useAllIPs type="int">0</useAllIPs> - <enableDecompressSupport type="int">0</enableDecompressSupport> - <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport> - <enableCRCCheckSupport type="int">0</enableCRCCheckSupport> - <uniqueID type="int">4</uniqueID> - <disableDnsResolutionCache type="int">0</disableDnsResolutionCache> - <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/> - <httpsTunnel type="str">0.0.0.0</httpsTunnel> - <enableHttpsTunnel type="int">0</enableHttpsTunnel> - <exactTransactions type="int">0</exactTransactions> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15342</_apiUniqueId> - <uniqueID type="int">4</uniqueID> - <commandIdCounter type="int">1</commandIdCounter> - <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport"> - <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"/> - </serializedNetworkSettingsMap> - <protocolName type="str">HTTP</protocolName> - </networkPluginSettings> - </item> - </agentList> - </traffic> - <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup"> - <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp> - <name type="str">client network_1</name> - <role type="str">Client</role> - <networkType type="str">none</networkType> - <aggregation type="int">0</aggregation> - <lineSpeed type="str">Default</lineSpeed> - <cpuAggregation type="bool">False</cpuAggregation> - <chassisChain ref="2"/> - <cardType type="str">FLEXAP1040SQ</cardType> - <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/> - <comment type="str"></comment> - <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange"> - <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="24" type="ixNetworkRange"> - <_smRangeObjectId type="str">0304987f-176a-4aea-a3cb-c117279fe0ea</_smRangeObjectId> - <name type="str">Network Range IP-R6 in client network_1 (192.16.100.20+1)</name> - <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="25" type="ixIpDistributionGroup"> - <name type="str">DistGroup1</name> - <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12931</_apiUniqueId> - <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange"> - <item ref="24"/> - </_networkRangeList> - <_rangeGroupObjectId type="str">f020117b-0c7f-4da8-a1ae-0fca36b0caad</_rangeGroupObjectId> - <_smPluginObjectId type="str">410b3e8d-36a6-41b5-821e-9ee93496ea7a</_smPluginObjectId> - </rangeGroup> - <enableStats type="bool">False</enableStats> - </item> - </networkRangeList> - <layerPlugins type="NoneType">None</layerPlugins> - <stack type="NoneType">None</stack> - <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup"> - <item ref="25"/> - </rangeGroupList> - <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting> - <linkLayerOptions type="int">0</linkLayerOptions> - <ipSourcePortFrom type="int">1024</ipSourcePortFrom> - <ipSourcePortTo type="int">65535</ipSourcePortTo> - <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway> - <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet> - <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6> - <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6> - <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/> - <macMappingMode type="int">0</macMappingMode> - <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings"> - <gratuitousArp type="bool">True</gratuitousArp> - <processGratArp type="bool">False</processGratArp> - </arpSettings> - <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns"> - <enable type="int">0</enable> - <cacheTimeout type="int">30000</cacheTimeout> - <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/> - <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/> - </dnsParameters> - <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters"> - <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="26" type="ixTcpParametersFull"> - <enableCongestionNotification type="bool">False</enableCongestionNotification> - <enableTimeStamp type="bool">True</enableTimeStamp> - <timeWaitRecycle type="bool">True</timeWaitRecycle> - <timeWaitReuse type="bool">False</timeWaitReuse> - <enableTxBwLimit type="bool">False</enableTxBwLimit> - <txBwLimitUnit type="int">0</txBwLimitUnit> - <txBwLimit type="int">1024</txBwLimit> - <enableRxBwLimit type="bool">False</enableRxBwLimit> - <rxBwLimitUnit type="int">0</rxBwLimitUnit> - <rxBwLimit type="int">1024</rxBwLimit> - <finTimeout type="int">60</finTimeout> - <keepAliveInterval type="int">7200</keepAliveInterval> - <keepAliveProbes type="int">75</keepAliveProbes> - <keepAliveTime type="int">9</keepAliveTime> - <synRetries type="int">5</synRetries> - <synAckRetries type="int">5</synAckRetries> - <retransmitRetries type="int">15</retransmitRetries> - <transmitBuffer type="int">1024</transmitBuffer> - <receiveBuffer type="int">1024</receiveBuffer> - <tcpSack type="bool">True</tcpSack> - <windowScaling type="bool">False</windowScaling> - <rtoMin type="int">1000</rtoMin> - <rtoMax type="int">120000</rtoMax> - </tcpParametersFull> - <tcpParametersFull ref="26"/> - </tcpParameters> - <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment"> - <enable type="bool">False</enable> - <addDelay type="bool">True</addDelay> - <addReorder type="bool">False</addReorder> - <addDrop type="bool">False</addDrop> - <addDuplicate type="bool">False</addDuplicate> - <randomizeSeed type="bool">False</randomizeSeed> - <delay type="int">1</delay> - <reorder type="int">1</reorder> - <reorderLength type="int">1</reorderLength> - <sourcePort type="int">0</sourcePort> - <destinationPort type="int">0</destinationPort> - <drop type="int">1</drop> - <duplicate type="int">1</duplicate> - <jitter type="int">0</jitter> - <gap type="int">1</gap> - <destinationIp type="str">any</destinationIp> - <typeOfService type="str">any</typeOfService> - <protocol type="str">any</protocol> - <addFragmentation type="bool">False</addFragmentation> - <fragmentationType type="str">FragmentationPercent</fragmentationType> - <fragmentPercent type="int">50</fragmentPercent> - <mtu type="int">1000</mtu> - <fragmentSequenceSkip type="int">1</fragmentSequenceSkip> - <fragmentSequenceLength type="int">1</fragmentSequenceLength> - <_seed type="int">1</_seed> - </impairment> - <_portGroupId type="str">6c1a9dc4-bc8e-48ad-982f-956b0561e947</_portGroupId> - <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap"> - <externalLinks type="dict"/> - </_smExternalLinks> - <smVersion type="int">1</smVersion> - </network> - <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters"> - <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity"> - <agent ref="27"/> - <protocolAndType type="str">HTTP Client</protocolAndType> - <name type="str">HTTPClient1</name> - <enable type="bool">True</enable> - <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="28" type="ixTimeline"> - <name type="str">Timeline2</name> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <rampUpType type="int">0</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <rampDownValue type="int">20000</rampDownValue> - <timelineType type="int">0</timelineType> - <objectID type="int">3</objectID> - </timeline> - <customParameters type="NoneType">None</customParameters> - <role type="str">Client</role> - <activeRole type="str">Client</activeRole> - <objectivePercent type="float">100.0</objectivePercent> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <constraintType type="NoneType">None</constraintType> - <constraintValue type="int">100</constraintValue> - <timerGranularity type="int">100</timerGranularity> - <enableConstraint type="bool">False</enableConstraint> - <secondaryConstraintType type="NoneType">None</secondaryConstraintType> - <secondaryConstraintValue type="int">100</secondaryConstraintValue> - <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint> - <portMapPolicy type="str">portPairs</portMapPolicy> - <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior> - <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior> - <userIpMapping type="str">1:1</userIpMapping> - <destinationIpMapping type="str">Consecutive</destinationIpMapping> - <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">15354</_apiUniqueId> - <_objectiveValue type="int">64512</_objectiveValue> - <timelineScale type="float">1.0</timelineScale> - </item> - </activityParameters> - <timeline ref="28"/> - <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture"> - <captureViewOptions ref="8"/> - <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter"> - <filterString type="str"></filterString> - </filter> - <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/> - <enable type="bool">False</enable> - <_apiUniqueId type="int">15341</_apiUniqueId> - </communityCapture> - <payload type="NoneType">None</payload> - <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="29" type="ixRangeAgentEndpointWiring"> - <rangeAgentConnections type="list"/> - <_apiUniqueId type="int">15332</_apiUniqueId> - <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="24"/> - <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring"> - <range ref="24"/> - <agentEndpointConnections type="list"/> - <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item ref="27"/> - <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring"> - <agent ref="27"/> - <endpoints type="list"/> - <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict"> - <_dict type="list"> - <item type="tuple"> - <item type="str">HTTP Client</item> - <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint"> - <endpointName type="str">HTTP Client</endpointName> - <isAvailable type="bool">True</isAvailable> - </item> - </item> - </_dict> - </endpointsDict> - </item> - </item> - </_dict> - </agentConnectionsDict> - </item> - </item> - </_dict> - </rangeAgentDict> - </activityIpWiring> - <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag> - <iterations type="int">1</iterations> - <standbyTime type="int">0</standbyTime> - <offlineTime type="int">0</offlineTime> - <sustainTime type="int">600</sustainTime> - <iterationTime type="int">620</iterationTime> - <totalTime type="int">620</totalTime> - <portMapPolicy type="str">portPairs</portMapPolicy> - <objectiveType type="str">concurrentConnections</objectiveType> - <objectiveValue type="int">64512</objectiveValue> - <rampUpType type="int">-1</rampUpType> - <rampUpValue type="int">20000</rampUpValue> - <rampUpInterval type="int">1</rampUpInterval> - <rampUpTime type="int">0</rampUpTime> - <rampDownTime type="int">20</rampDownTime> - <userObjectiveType type="str">concurrentConnections</userObjectiveType> - <userObjectiveValue type="long">64512</userObjectiveValue> - <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">15331</_apiUniqueId> - <isVisible type="bool">True</isVisible> - <activityIpWiring ref="29"/> - <_portOperationModesAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">2</key> - <value type="bool">False</value> - </item> - <item> - <key type="int">3</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">4</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">8</key> - <value type="bool">True</value> - </item> - </_portOperationModesAllowed> - <_tcpAccelerationAllowed type="dict"> - <item> - <key type="int">0</key> - <value type="bool">True</value> - </item> - <item> - <key type="int">1</key> - <value type="bool">True</value> - </item> - </_tcpAccelerationAllowed> - </item> - </elementList> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12922</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">DUT</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/> - <objectID type="int">1</objectID> - <_apiUniqueId type="int">12923</_apiUniqueId> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn"> - <name type="str">Server</name> - <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"> - <item ref="30"/> - <item ref="31"/> - </elementList> - <objectID type="int">2</objectID> - <_apiUniqueId type="int">12924</_apiUniqueId> - </item> - </columnList> - <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/> - <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12921</_apiUniqueId> - </item> - </scenarioList> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics> - <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig> - <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops> - <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun> - <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging> - <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats> - <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats> - <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported> - <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits> - <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/> - <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective> - <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings"> - <disabledEventClasses type="str"></disabledEventClasses> - <disabledPorts type="str"></disabledPorts> - <_apiUniqueId type="int">12990</_apiUniqueId> - </eventHandlerSettings> - <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes> - <networkProtocolOptions type="NoneType">None</networkProtocolOptions> - <seedForRandomBehavior type="int">0</seedForRandomBehavior> - <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor> - <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor> - <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory"> - <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory"> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Playlist</name> - <categoryId type="str">playlist</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">0</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Random Data</name> - <categoryId type="str">rdge</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory"> - <startcore type="int">0</startcore> - <totalcores type="int">1</totalcores> - </pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">1</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Real File</name> - <categoryId type="str">realfile</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">2</objectID> - </item> - <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory"> - <name type="str">Unified File System</name> - <categoryId type="str">ufs</categoryId> - <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <pm type="NoneType">None</pm> - <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/> - <objectID type="int">3</objectID> - </item> - </categoryList> - <_profileMru type="str"></_profileMru> - </profileDirectory> - <communityList type="NoneType">None</communityList> - <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest> - <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion> - <objectID type="int">0</objectID> - <_apiUniqueId type="int">12920</_apiUniqueId> - <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration> - <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions"> - <pollingInterval type="int">2</pollingInterval> - <allowCsvLogging type="bool">False</allowCsvLogging> - <enableDataStore type="bool">False</enableDataStore> - <svConfiguration type="str">begin 666 <data> M>)RE6(ENXS80_17!!8(6J$Z?<9PL'!\;81W;L+P'T!0!(]&.NK*D)2D?6_3? M.Z0.R[+D!"V01!3?F^&0>AP.T_NPWWC2%A/J!OYM35>TVH>[GL40^^+B'29' MJ*6T-$53C':K!@1,>>_$I4SZA ^W-10R=^\BA6Z5D%M0AGT;*SG>5X)"@,!X M,)LN1].EI-[UYHN1!<W^TIQ-B^_/HZ&Y[-]/1AP8S![OS>EHF U-L]9[ C@; M_*XW)OA'!)R#M$5>A&]K1DT,1+>38+UV_77:/T8>Q0);NAML'7S['K^BK1N0 ME*%E*&5H$\X)MET168+7!3Y:$PB&+^OR$.(4TP4V@V7V N3,2<"PS7*V2Q+A M0F /KN-@GSNBYS&.?/3BX2%BR&(!P>>$^7%U\G$TRJPOC@0!S2(61BQ;R<?( M8V[H%><F2$/K#=HCVG/948AO$%$6;#["-WO-.*UTS+'KX3EB&2+Z^QXFC*9/ M"33MT^Z>NK>U5\;"KJKN=CME5U<"LE8-3=/5;X\3RW[%&R2[/GPT6(Q:9N6\ M;24&5=-1AWB%8$YBG4[?!.T4'I @40'!&-#"^P(Y;O"1!%%8 %R?W1D]E3]Z M:B5KX+G89^. ;"(/69@QT$OV[?Z^^F4_O($__9NK'U' ;K[$FSM^Z<8/76G& MC=_/V'P""?>/(_CGL?G/L1EO"=@0B\@OQG'EL9N3O)..K,4-"502.&"1 !%; MR7HK;G^X6K.;7&3@*AG%]%>!A8F+//<GXEOH'JUS2HC-WRV'))*C)MYG'[-. M8Y0D'N7FF26K 2IW;=CI(2WR8B:?SQ1M,$=Y6^>=:KZWW&: &%X'Y, 9? NK M#\OE/+/-H^?V@]4ZW5B<,.X^F=_,OKP<64OKB?N1M^.OS^9\VWANS -0O3P8 MR/J]0O8K,4+!OCQ 3-()./0XJ6/ON=4P$G.6U$KX89>(^ +'>HO#PYB]_,4S M[Q;32ZP'=_WJP2^K9&7YE9F0.YF[<C'AS&;=KF/=T>6ZIF&Y8;20_(+LCMS2 MM':GLUIU.IVZ6),J!^=#@9CR.H'71D<3/G+(N=EGBHEE#CEHR;K<E U=;AO- M>J/9;-0A'D-O&?5F1VX:;:/>-AH:A-RZOFZUA>N<=6E$(&_"L#/S.</0]+:L MZ[+67NKU;H/_*.V6WKIN-V6MT]6R:$^L*OP&<(0#0X+=W/5=+]F1# [(9+-6 M?)$X)SXB^]7U<;HLPZGU4>8:C^5;1GG#4]]Q^('.F3 AQ6@V%*.N*;IQ?33L M=O737*56N3@?S-Q/,=L%Y'N:I8'548RX"(NE4D:YX&B!/8RHF)NYGT"Y(744 M79-&_5-G.=H%9^E6'W2?()>M"=I(/ -0Z==]I_7;DPG%V%,\RA./6BZ.4ITJ MS/T"AY!C,,E-"W3#9ZZW$R\EE/(=^_G1LI$G9J-KB> *_>>&UC8'?WJ!3,W- M3GI+12H*DS,9"N/WY/_<.8$IE QT%O*#K$(@@\#S(&7Q*DXH&C,$'\")97:* M51I/,"(^=OC9R7DK7MWE'13P2C]C+]B)>H26NCF%*[U ZN-,40=RHMC;.3=% M_)*CI/*_Y*M(J78'97E@!Y[I@^)6R,;E'DM9E4X70<3P OGK<F\%N,S-)N39 M8YG)I;CT97B5+B_J+=:E<_"Y:N&Z57+XG5"^\#KOC)1MO8IBC;/CPCJ[I/V' M^V%6=_/[B>\=Q+O..R:N_QT[Q[K\:*,F2CBV:"G.[[%W/2%DR8=3XK8FO-5R M%^C:*1Y?96I20!Q,Q%4'V2 ,.L%;[*5W3E58P(76WX27;[- 2,H#<67)76<Y M- C\E;N.",I?(/FJ4P!M ,7W2-ZWB,0QQH<GMT^.423*H//CU<'4)JY02 +F MJEWP"D>:!^=96F7QKYT,E!_7P=LW#'(,-1_Y_]6&,.?SY(_L/QQW_P)K190H end </svConfiguration> - <svRestConfiguration type="str"></svRestConfiguration> - </statManagerOptions> - <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent> - <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory"> - <singletonDict type="dict"/> - <referenceCountDict type="dict"> - <item> - <key type="str">qovCoprocessor</key> - <value type="int">0</value> - </item> - <item> - <key type="str">Impairment</key> - <value type="int">0</value> - </item> - <item> - <key type="str">asrCoprocessor</key> - <value type="int">0</value> - </item> - </referenceCountDict> - </_scenarioElementFactory> - </item> - </testList> -</root> diff --git a/samples/vnf_samples/vnf_descriptors/prox_irq_vnf.yaml b/samples/vnf_samples/vnf_descriptors/prox_irq_vnf.yaml new file mode 100644 index 000000000..12f2a69ca --- /dev/null +++ b/samples/vnf_samples/vnf_descriptors/prox_irq_vnf.yaml @@ -0,0 +1,49 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +vnfd:vnfd-catalog: + vnfd: + - id: ProxIrqVNF # nsb class mapping + name: proxirqvnf + short-name: proxirqvnf + description: prox stateless traffic verifier + mgmt-interface: + vdu-id: proxgen-baremetal + {% if user is defined %} + user: '{{user}}' # Value filled by vnfdgen + {% endif %} + {% if password is defined %} + password: '{{password}}' # Value filled by vnfdgen + {% endif %} + {% if ip is defined %} + ip: '{{ip}}' # Value filled by vnfdgen + {% endif %} + {% if key_filename is defined %} + key_filename: '{{key_filename}}' # Value filled by vnfdgen + {% endif %} + vdu: + - id: proxgen-baremetal + name: proxgen-baremetal + description: prox stateless traffic verifier + + benchmark: + kpi: + - max_irq + - irq(0) + - irq(1) + - irq(2) + - irq(3) + - irq(4) + - irq(5) + - irq(6) diff --git a/samples/vnf_samples/vnf_descriptors/tg_prox_irq.yaml b/samples/vnf_samples/vnf_descriptors/tg_prox_irq.yaml new file mode 100644 index 000000000..c7b07201a --- /dev/null +++ b/samples/vnf_samples/vnf_descriptors/tg_prox_irq.yaml @@ -0,0 +1,49 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +vnfd:vnfd-catalog: + vnfd: + - id: ProxIrqGen # nsb class mapping + name: proxirqgen + short-name: proxirqgen + description: prox stateless traffic verifier + mgmt-interface: + vdu-id: proxgen-baremetal + {% if user is defined %} + user: '{{user}}' # Value filled by vnfdgen + {% endif %} + {% if password is defined %} + password: '{{password}}' # Value filled by vnfdgen + {% endif %} + {% if ip is defined %} + ip: '{{ip}}' # Value filled by vnfdgen + {% endif %} + {% if key_filename is defined %} + key_filename: '{{key_filename}}' # Value filled by vnfdgen + {% endif %} + vdu: + - id: proxgen-baremetal + name: proxgen-baremetal + description: prox stateless traffic verifier + + benchmark: + kpi: + - max_irq + - irq(0) + - irq(1) + - irq(2) + - irq(3) + - irq(4) + - irq(5) + - irq(6) diff --git a/tests/opnfv/test_cases/opnfv_yardstick_tc094.yaml b/tests/opnfv/test_cases/opnfv_yardstick_tc094.yaml new file mode 100644 index 000000000..afeb44366 --- /dev/null +++ b/tests/opnfv/test_cases/opnfv_yardstick_tc094.yaml @@ -0,0 +1,94 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +{% set tp = tp or "../../../samples/vnf_samples/traffic_profiles/prox_binsearch.yaml" %} +{% set topology = topology or "../../../samples/vnf_samples/nsut/prox/prox-tg-topology-2.yaml" %} +{% set vnf_config = vnf_config or "../../../samples/vnf_samples/nsut/prox/configs/handle_l2fwd-2.cfg" %} +{% set tg_config = tg_config or "../../../samples/vnf_samples/nsut/prox/configs/gen_l2fwd-2.cfg" %} +--- +schema: "yardstick:task:0.1" +description: > + Yardstick NSB TC094 config file; + Measures network metrics such as Throughput and Latency of the DPDK + SampleVNF PROX application running on SUT based on RFC2544. +scenarios: +- + type: NSPerf + traffic_profile: {{ tp }} + topology: {{ topology }} + + nodes: + tg__0: tg_0.yardstick + vnf__0: vnf_0.yardstick + + options: + vnf__0: + collectd: + interval: 1 + prox_path: /opt/nsb_bin/prox + prox_config: {{ vnf_config }} + prox_args: + "-t": "" + + tg__0: + collectd: + interval: 1 + prox_path: /opt/nsb_bin/prox + prox_config: {{ tg_config }} + prox_args: + "-e": "" + "-t": "" + + runner: + type: Duration + duration: 300 + +context: + name: yardstick + image: yardstick-samplevnfs + user: ubuntu + flavor: + vcpus: 10 + ram: 20480 + disk: 6 + extra_specs: + hw:cpu_sockets: 1 + hw:cpu_cores: 10 + hw:cpu_threads: 1 + placement_groups: + pgrp1: + policy: "availability" + + servers: + vnf_0: + floating_ip: true + placement: "pgrp1" + tg_0: + floating_ip: true + placement: "pgrp1" + + networks: + mgmt: + cidr: '10.0.1.0/24' + uplink_0: + cidr: '10.0.2.0/24' + gateway_ip: 'null' + port_security_enabled: False + enable_dhcp: 'false' + downlink_0: + cidr: '10.0.3.0/24' + gateway_ip: 'null' + port_security_enabled: False + enable_dhcp: 'false' + diff --git a/tests/opnfv/test_suites/opnfv_os-ovn-nofeature-ha_daily.yaml b/tests/opnfv/test_suites/opnfv_os-ovn-nofeature-ha_daily.yaml new file mode 100644 index 000000000..d0677280c --- /dev/null +++ b/tests/opnfv/test_suites/opnfv_os-ovn-nofeature-ha_daily.yaml @@ -0,0 +1,38 @@ +############################################################################## +# Copyright (c) 2018 Huawei Technologies Co.,Ltd and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## +--- +# opnfv os-ovn-nofeature-ha daily task suite + +schema: "yardstick:suite:0.1" + +name: "os-ovn-nofeature-ha" +test_cases_dir: "tests/opnfv/test_cases/" +test_cases: +- + file_name: opnfv_yardstick_tc002.yaml +- + file_name: opnfv_yardstick_tc005.yaml +- + file_name: opnfv_yardstick_tc010.yaml +- + file_name: opnfv_yardstick_tc011.yaml +- + file_name: opnfv_yardstick_tc012.yaml +- + file_name: opnfv_yardstick_tc014.yaml +- + file_name: opnfv_yardstick_tc037.yaml +- + file_name: opnfv_yardstick_tc069.yaml +- + file_name: opnfv_yardstick_tc070.yaml +- + file_name: opnfv_yardstick_tc071.yaml +- + file_name: opnfv_yardstick_tc072.yaml diff --git a/yardstick/benchmark/contexts/standalone/ovs_dpdk.py b/yardstick/benchmark/contexts/standalone/ovs_dpdk.py index 3a310f146..c6e19f614 100644 --- a/yardstick/benchmark/contexts/standalone/ovs_dpdk.py +++ b/yardstick/benchmark/contexts/standalone/ovs_dpdk.py @@ -172,12 +172,12 @@ class OvsDpdkContext(base.Context): def setup_ovs_bridge_add_flows(self): dpdk_args = "" - dpdk_list = [] vpath = self.ovs_properties.get("vpath", "/usr/local") version = self.ovs_properties.get('version', {}) ovs_ver = [int(x) for x in version.get('ovs', self.DEFAULT_OVS).split('.')] ovs_add_port = ('ovs-vsctl add-port {br} {port} -- ' - 'set Interface {port} type={type_}{dpdk_args}{dpdk_rxq}') + 'set Interface {port} type={type_}{dpdk_args}' + '{dpdk_rxq}{pmd_rx_aff}') chmod_vpath = 'chmod 0777 {0}/var/run/openvswitch/dpdkvhostuser*' cmd_list = [ @@ -191,23 +191,38 @@ class OvsDpdkContext(base.Context): if queues: dpdk_rxq = " options:n_rxq={queue}".format(queue=queues) - ordered_network = collections.OrderedDict(self.networks) + # Sorting the array to make sure we execute dpdk0... in the order + ordered_network = collections.OrderedDict( + sorted(self.networks.items(), key=lambda t: t[1].get('port_num', 0))) + pmd_rx_aff_ports = self.ovs_properties.get("dpdk_pmd-rxq-affinity", {}) for index, vnf in enumerate(ordered_network.values()): if ovs_ver >= [2, 7, 0]: dpdk_args = " options:dpdk-devargs=%s" % vnf.get("phy_port") - dpdk_list.append(ovs_add_port.format( + affinity = pmd_rx_aff_ports.get(vnf.get("port_num", -1), "") + if affinity: + pmd_rx_aff = ' other_config:pmd-rxq-affinity=' \ + '"{affinity}"'.format(affinity=affinity) + else: + pmd_rx_aff = "" + cmd_list.append(ovs_add_port.format( br=MAIN_BRIDGE, port='dpdk%s' % vnf.get("port_num", 0), - type_='dpdk', dpdk_args=dpdk_args, dpdk_rxq=dpdk_rxq)) - - # Sorting the array to make sure we execute dpdk0... in the order - list.sort(dpdk_list) - cmd_list.extend(dpdk_list) + type_='dpdk', dpdk_args=dpdk_args, dpdk_rxq=dpdk_rxq, + pmd_rx_aff=pmd_rx_aff)) # Need to do two for loop to maintain the dpdk/vhost ports. + pmd_rx_aff_ports = self.ovs_properties.get("vhost_pmd-rxq-affinity", + {}) for index, _ in enumerate(ordered_network): + affinity = pmd_rx_aff_ports.get(index) + if affinity: + pmd_rx_aff = ' other_config:pmd-rxq-affinity=' \ + '"{affinity}"'.format(affinity=affinity) + else: + pmd_rx_aff = "" cmd_list.append(ovs_add_port.format( br=MAIN_BRIDGE, port='dpdkvhostuser%s' % index, - type_='dpdkvhostuser', dpdk_args="", dpdk_rxq="")) + type_='dpdkvhostuser', dpdk_args="", dpdk_rxq=dpdk_rxq, + pmd_rx_aff=pmd_rx_aff)) ovs_flow = ("ovs-ofctl add-flow {0} in_port=%s,action=output:%s". format(MAIN_BRIDGE)) diff --git a/yardstick/benchmark/core/report.py b/yardstick/benchmark/core/report.py index a484a49f3..0bc392fe5 100644 --- a/yardstick/benchmark/core/report.py +++ b/yardstick/benchmark/core/report.py @@ -56,10 +56,10 @@ class JSTree(object): """Format the data into the required format for jsTree. The data format expected is a list of key-value pairs which represent - the data and name for each metric e.g.: + the data and label for each metric e.g.: - [{'data': [0, ], 'name': 'tg__0.DropPackets'}, - {'data': [548, ], 'name': 'tg__0.LatencyAvg.5'},] + [{'data': [0, ], 'label': 'tg__0.DropPackets'}, + {'data': [548, ], 'label': 'tg__0.LatencyAvg.5'},] This data is converted into the format required for jsTree to group and display the metrics in a hierarchial fashion, including creating a @@ -77,7 +77,7 @@ class JSTree(object): self.jstree_data = [] for item in data: - self._create_node(item["name"]) + self._create_node(item["label"]) return self.jstree_data @@ -85,7 +85,7 @@ class JSTree(object): class Report(object): """Report commands. - Set of commands to manage benchmark tasks. + Set of commands to manage reports. """ def __init__(self): @@ -124,10 +124,12 @@ class Report(object): else: raise KeyError("Task ID or Test case not found.") - @cliargs("task_id", type=str, help=" task id", nargs=1) - @cliargs("yaml_name", type=str, help=" Yaml file Name", nargs=1) - def generate(self, args): - """Start report generation.""" + def _generate_common(self, args): + """Actions that are common to both report formats. + + Create the necessary data structure for rendering + the report templates. + """ self._validate(args.yaml_name[0], args.task_id[0]) self.db_fieldkeys = self._get_fieldkeys() @@ -135,7 +137,7 @@ class Report(object): self.db_task = self._get_tasks() field_keys = [] - temp_series = [] + datasets = [] table_vals = {} field_keys = [encodeutils.to_utf8(field['fieldKey']) @@ -143,37 +145,42 @@ class Report(object): for key in field_keys: self.Timestamp = [] - series = {} values = [] for task in self.db_task: task_time = encodeutils.to_utf8(task['time']) if not isinstance(task_time, str): task_time = str(task_time, 'utf8') + if not isinstance(key, str): key = str(key, 'utf8') task_time = task_time[11:] head, _, tail = task_time.partition('.') task_time = head + "." + tail[:6] self.Timestamp.append(task_time) if task[key] is None: - values.append('') - elif isinstance(task[key], (int, float)) is True: + values.append(None) + elif isinstance(task[key], (int, float)): values.append(task[key]) else: values.append(ast.literal_eval(task[key])) + datasets.append({'label': key, 'data': values}) table_vals['Timestamp'] = self.Timestamp table_vals[key] = values - series['name'] = key - series['data'] = values - temp_series.append(series) + + return datasets, table_vals + + @cliargs("task_id", type=str, help=" task id", nargs=1) + @cliargs("yaml_name", type=str, help=" Yaml file Name", nargs=1) + def generate(self, args): + """Start report generation.""" + datasets, table_vals = self._generate_common(args) template_dir = consts.YARDSTICK_ROOT_PATH + "yardstick/common" template_environment = jinja2.Environment( autoescape=False, - loader=jinja2.FileSystemLoader(template_dir), - trim_blocks=False) + loader=jinja2.FileSystemLoader(template_dir)) context = { - "series": temp_series, + "datasets": datasets, "Timestamps": self.Timestamp, "task_id": self.task_id, "table": table_vals, @@ -184,4 +191,31 @@ class Report(object): with open(consts.DEFAULT_HTML_FILE, "w") as file_open: file_open.write(template_html.render(context)) - print("Report generated. View /tmp/yardstick.htm") + print("Report generated. View %s" % consts.DEFAULT_HTML_FILE) + + @cliargs("task_id", type=str, help=" task id", nargs=1) + @cliargs("yaml_name", type=str, help=" Yaml file Name", nargs=1) + def generate_nsb(self, args): + """Start NSB report generation.""" + datasets, table_vals = self._generate_common(args) + jstree_data = JSTree().format_for_jstree(datasets) + + template_dir = consts.YARDSTICK_ROOT_PATH + "yardstick/common" + template_environment = jinja2.Environment( + autoescape=False, + loader=jinja2.FileSystemLoader(template_dir), + lstrip_blocks=True) + + context = { + "Timestamps": self.Timestamp, + "task_id": self.task_id, + "table": table_vals, + "jstree_nodes": jstree_data, + } + + template_html = template_environment.get_template("nsb_report.html.j2") + + with open(consts.DEFAULT_HTML_FILE, "w") as file_open: + file_open.write(template_html.render(context)) + + print("Report generated. View %s" % consts.DEFAULT_HTML_FILE) diff --git a/yardstick/benchmark/core/task.py b/yardstick/benchmark/core/task.py index 1dfd6c31e..477dbcc57 100644 --- a/yardstick/benchmark/core/task.py +++ b/yardstick/benchmark/core/task.py @@ -11,6 +11,7 @@ import sys import os from collections import OrderedDict +import six import yaml import atexit import ipaddress @@ -313,7 +314,7 @@ class Task(object): # pragma: no cover return {k: self._parse_options(v) for k, v in op.items()} elif isinstance(op, list): return [self._parse_options(v) for v in op] - elif isinstance(op, str): + elif isinstance(op, six.string_types): return self.outputs.get(op[1:]) if op.startswith('$') else op else: return op diff --git a/yardstick/benchmark/runners/iteration.py b/yardstick/benchmark/runners/iteration.py index 4c88f3671..58ab06a32 100644 --- a/yardstick/benchmark/runners/iteration.py +++ b/yardstick/benchmark/runners/iteration.py @@ -96,6 +96,7 @@ def _worker_process(queue, cls, method_name, scenario_cfg, except Exception: # pylint: disable=broad-except errors = traceback.format_exc() LOG.exception("") + raise else: if result: # add timeout for put so we don't block test diff --git a/yardstick/cmd/commands/report.py b/yardstick/cmd/commands/report.py index 47bf22a1f..4f057a05d 100644 --- a/yardstick/cmd/commands/report.py +++ b/yardstick/cmd/commands/report.py @@ -1,7 +1,7 @@ ############################################################################## -# Copyright (c) 2017 Rajesh Kudaka. +# Copyright (c) 2017 Rajesh Kudaka <4k.rajesh@gmail.com> +# Copyright (c) 2018 Intel Corporation. # -# Author: Rajesh Kudaka (4k.rajesh@gmail.com) # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at @@ -10,11 +10,7 @@ """ Handler for yardstick command 'report' """ -from __future__ import print_function - -from __future__ import absolute_import - -from yardstick.benchmark.core.report import Report +from yardstick.benchmark.core import report from yardstick.cmd.commands import change_osloobj_to_paras from yardstick.common.utils import cliargs @@ -22,12 +18,19 @@ from yardstick.common.utils import cliargs class ReportCommands(object): # pragma: no cover """Report commands. - Set of commands to manage benchmark tasks. + Set of commands to manage reports. """ @cliargs("task_id", type=str, help=" task id", nargs=1) @cliargs("yaml_name", type=str, help=" Yaml file Name", nargs=1) def do_generate(self, args): - """Start a benchmark scenario.""" + """Generate a report.""" + param = change_osloobj_to_paras(args) + report.Report().generate(param) + + @cliargs("task_id", type=str, help=" task id", nargs=1) + @cliargs("yaml_name", type=str, help=" Yaml file Name", nargs=1) + def do_generate_nsb(self, args): + """Generate a report using the NSB template.""" param = change_osloobj_to_paras(args) - Report().generate(param) + report.Report().generate_nsb(param) diff --git a/yardstick/common/exceptions.py b/yardstick/common/exceptions.py index 5e0df973a..f62f02f18 100644 --- a/yardstick/common/exceptions.py +++ b/yardstick/common/exceptions.py @@ -405,6 +405,10 @@ class IxNetworkFieldNotPresentInStackItem(YardstickException): message = 'Field "%(field_name)s" not present in stack item %(stack_item)s' +class IncorrectFlowOption(YardstickException): + message = 'Flow option {option} for {link} is incorrect' + + class SLAValidationError(YardstickException): message = '%(case_name)s SLA validation failed. Error: %(error_msg)s' diff --git a/yardstick/common/nsb_report.css b/yardstick/common/nsb_report.css index 0c47791e2..2beb91c53 100644 --- a/yardstick/common/nsb_report.css +++ b/yardstick/common/nsb_report.css @@ -19,7 +19,7 @@ table { } header { - font-family: Frutiger; + font-family: Frutiger, "Helvetica Neue", Helvetica, Arial, sans-serif; clear: left; text-align: center; } diff --git a/yardstick/common/nsb_report.html.j2 b/yardstick/common/nsb_report.html.j2 index f1b4ae1c2..a3087d746 100644 --- a/yardstick/common/nsb_report.html.j2 +++ b/yardstick/common/nsb_report.html.j2 @@ -15,12 +15,17 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> - <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.5/themes/default/style.min.css"> - <link rel="stylesheet" href="{{template_dir}}/nsb_report.css"> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.7/themes/default/style.min.css"> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/jstree.min.js"></script> - <script src="https://code.highcharts.com/highcharts.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.7/jstree.min.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.bundle.min.js"></script> + <style> + {% include 'nsb_report.css' %} + </style> + <script> + {% include 'nsb_report.js' %} + </script> </head> <body> @@ -31,12 +36,12 @@ <h4>Report of {{task_id}} Generated</h4> </header> </div> - <div class="row" style="height:500px"> + <div class="row"> <div class="col-md-2 control-pane"> <div id="data_selector"></div> </div> <div class="col-md-10 data-pane"> - <div id="graph"></div> + <canvas id="cnvGraph" style="width: 100%; height: 500px"></canvas> </div> </div> <div class="row"> @@ -47,112 +52,29 @@ </div> <script> - var arr, tab, tr, td, tbody, keys, key, curr_data; + var arr, jstree_data, timestamps; arr = {{table|safe}}; - - tab = document.getElementsByTagName('table')[0]; - tbody = document.createElement('tbody'); - keys = Object.keys(arr); - // for each metric - for (var i = 0; i < keys.length; i++) { - tr = document.createElement('tr'); - td = document.createElement('td'); - key = keys[i]; - td.append(key); - tr.append(td); - curr_data = arr[key]; - // add each piece of data as its own column - for (var j = 0; j < curr_data.length; j++) { - td = document.createElement('td'); - td.append(curr_data[j]); - tr.append(td); - } - tbody.append(tr); - } - tab.appendChild(tbody); + timestamps = {{Timestamps|safe}}; + jstree_data = {{jstree_nodes|safe}}; $(function() { - $('#data_selector').jstree({ - plugins: ['checkbox'], - checkbox: { - three_state: false, - whole_node: true, - tie_selection: false, - }, - core: { - themes: { - icons: false, - stripes: true, - }, - data: {{jstree_nodes|safe}}, - }, - }); + create_table(arr); + create_tree(jstree_data); + var objGraph = create_graph($('#cnvGraph'), timestamps); $('#data_selector').on('check_node.jstree uncheck_node.jstree', function(e, data) { - var selected_leaves = []; + var selected_datasets = []; for (var i = 0; i < data.selected.length; i++) { var node = data.instance.get_node(data.selected[i]); if (node.children.length == 0) { - var point = {name: node.id, data: arr[node.id]}; - selected_leaves.push(point); - } - } - - $('#graph').highcharts({ - title: { - text: 'Yardstick Graphs', - x: -20, //center - }, - chart: { - marginLeft: 400, - zoomType: 'x', - type: 'spline', - }, - xAxis: { - crosshair: { - width: 1, - color: 'black', - }, - title: { - text: 'Timestamp', - }, - categories: {{Timestamps|safe}}, - }, - yAxis: { - crosshair: { - width: 1, - color: 'black', - }, - plotLines: [{ - value: 0, - width: 1, - color: '#808080', - }], - }, - plotOptions: { - series: { - showCheckbox: false, - visible: false, - }, - }, - tooltip: { - valueSuffix: '', - }, - legend: { - enabled: true, - }, - series: selected_leaves, - }); - - var chart = $('#graph').highcharts(); - for (var i = 0; i < chart.series.length; i++) { - var series = chart.series[i]; - if (series.visible) { - series.hide(); - } else { - series.show(); + var dataset = { + label: node.id, + data: arr[node.id], + }; + selected_datasets.push(dataset); } } + update_graph(objGraph, selected_datasets); }); }); </script> diff --git a/yardstick/common/nsb_report.js b/yardstick/common/nsb_report.js new file mode 100644 index 000000000..cc5e14ee7 --- /dev/null +++ b/yardstick/common/nsb_report.js @@ -0,0 +1,146 @@ +/******************************************************************************* + * Copyright (c) 2017 Rajesh Kudaka <4k.rajesh@gmail.com> + * Copyright (c) 2018 Intel Corporation. + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Apache License, Version 2.0 + * which accompanies this distribution, and is available at + * http://www.apache.org/licenses/LICENSE-2.0 + ******************************************************************************/ + +var None = null; + +function create_tree(jstree_data) +{ + $('#data_selector').jstree({ + plugins: ['checkbox'], + checkbox: { + three_state: false, + whole_node: true, + tie_selection: false, + }, + core: { + themes: { + icons: false, + stripes: true, + }, + data: jstree_data, + }, + }); +} + +// may need to pass timestamps too... +function create_table(table_data) +{ + var tab, tr, td, tn, tbody, keys, key, curr_data, val; + // create table + tab = document.getElementsByTagName('table')[0]; + tbody = document.createElement('tbody'); + // for each metric + keys = Object.keys(table_data); + for (var i = 0; i < keys.length; i++) { + key = keys[i]; + tr = document.createElement('tr'); + td = document.createElement('td'); + tn = document.createTextNode(key); + td.appendChild(tn); + tr.appendChild(td); + // add each piece of data as its own column + curr_data = table_data[key]; + for (var j = 0; j < curr_data.length; j++) { + val = curr_data[j]; + td = document.createElement('td'); + tn = document.createTextNode(val === None ? '' : val); + td.appendChild(tn); + tr.appendChild(td); + } + tbody.appendChild(tr); + } + tab.appendChild(tbody); +} + +function create_graph(cnvGraph, timestamps) +{ + return new Chart(cnvGraph, { + type: 'line', + data: { + labels: timestamps, + datasets: [], + }, + options: { + elements: { + line: { + borderWidth: 2, + fill: false, + tension: 0, + }, + }, + scales: { + xAxes: [{ + type: 'category', + }], + yAxes: [{ + type: 'linear', + }], + }, + tooltips: { + mode: 'point', + intersect: true, + }, + hover: { + mode: 'index', + intersect: false, + animationDuration: 0, + }, + legend: { + position: 'bottom', + labels: { + usePointStyle: true, + }, + }, + animation: { + duration: 0, + }, + responsive: true, + responsiveAnimationDuration: 0, + maintainAspectRatio: false, + }, + }); +} + +function update_graph(objGraph, datasets) +{ + var colors = [ + '#FF0000', // Red + '#228B22', // ForestGreen + '#FF8C00', // DarkOrange + '#00008B', // DarkBlue + '#FF00FF', // Fuchsia + '#9ACD32', // YellowGreen + '#FFD700', // Gold + '#4169E1', // RoyalBlue + '#A0522D', // Sienna + '#20B2AA', // LightSeaGreen + '#8A2BE2', // BlueViolet + ]; + + var points = [ + {s: 'circle', r: 3}, + {s: 'rect', r: 4}, + {s: 'triangle', r: 4}, + {s: 'star', r: 4}, + {s: 'rectRot', r: 5}, + ]; + + datasets.forEach(function(d, i) { + var color = colors[i % colors.length]; + var point = points[i % points.length]; + d.borderColor = color; + d.backgroundColor = color; + d.pointStyle = point.s; + d.pointRadius = point.r; + d.pointHoverRadius = point.r + 1; + }); + objGraph.data.datasets = datasets; + objGraph.update(); +} diff --git a/yardstick/common/report.html.j2 b/yardstick/common/report.html.j2 index ab76510ca..1dc7b1db1 100644 --- a/yardstick/common/report.html.j2 +++ b/yardstick/common/report.html.j2 @@ -15,9 +15,9 @@ <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> - <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> - <script src="https://code.highcharts.com/highcharts.js"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.bundle.min.js"></script> <style> table { @@ -26,7 +26,7 @@ display: block; } header { - font-family: Frutiger; + font-family: Frutiger, "Helvetica Neue", Helvetica, Arial, sans-serif; clear: left; text-align: center; } @@ -47,13 +47,14 @@ </div> </div> <div class="col-md-8"> - <div id="container"></div> + <canvas id="cnvGraph" style="width: 100%; height: 500px"></canvas> </div> </div> </div> <script> - var arr, tab, th, tr, td, tn, row, col, thead, tbody; + var None = null; + var arr, tab, th, tr, td, tn, row, col, thead, tbody, val; arr = {{table|safe}}; tab = document.getElementsByTagName('table')[0]; @@ -64,16 +65,17 @@ tn = document.createTextNode(Object.keys(arr).sort()[col]); th.appendChild(tn); tr.appendChild(th); - thead.appendChild(tr); } + thead.appendChild(tr); tab.appendChild(thead); tbody = document.createElement('tbody'); for (row = 0; row < arr[Object.keys(arr)[0]].length; row++) { tr = document.createElement('tr'); for (col = 0; col < Object.keys(arr).length; col++) { + val = arr[Object.keys(arr).sort()[col]][row]; td = document.createElement('td'); - tn = document.createTextNode(arr[Object.keys(arr).sort()[col]][row]); + tn = document.createTextNode(val === None ? '' : val); td.appendChild(tn); tr.appendChild(td); } @@ -82,38 +84,99 @@ tab.appendChild(tbody); $(function() { - $('#container').highcharts({ - title: { - text: 'Yardstick test results', - x: -20, //center - }, - subtitle: { - text: 'Report of {{task_id}} Task Generated', - x: -20, + var datasets = {{datasets|safe}}; + + var colors = [ + '#FF0000', // Red + '#228B22', // ForestGreen + '#FF8C00', // DarkOrange + '#00008B', // DarkBlue + '#FF00FF', // Fuchsia + '#9ACD32', // YellowGreen + '#FFD700', // Gold + '#4169E1', // RoyalBlue + '#A0522D', // Sienna + '#20B2AA', // LightSeaGreen + '#8A2BE2', // BlueViolet + ]; + + var points = [ + {s: 'circle', r: 3}, + {s: 'rect', r: 4}, + {s: 'triangle', r: 4}, + {s: 'star', r: 4}, + {s: 'rectRot', r: 5}, + ]; + + datasets.forEach(function(d, i) { + var color = colors[i % colors.length]; + var point = points[i % points.length]; + d.borderColor = color; + d.backgroundColor = color; + d.pointStyle = point.s; + d.pointRadius = point.r; + d.pointHoverRadius = point.r + 1; + }); + + new Chart($('#cnvGraph'), { + type: 'line', + data: { + labels: {{Timestamps|safe}}, + datasets: datasets, }, - xAxis: { + options: { + elements: { + line: { + borderWidth: 2, + fill: false, + tension: 0, + }, + }, title: { - text: 'Timestamp', + text: [ + 'Yardstick test results', + 'Report of {{task_id}} Task Generated', + ], + display: true, }, - categories: {{Timestamps|safe}}, - }, - yAxis: { - plotLines: [{ - value: 0, - width: 1, - color: '#808080', - }], - }, - tooltip: { - valueSuffix: '', - }, - legend: { - layout: 'vertical', - align: 'right', - verticalAlign: 'middle', - borderWidth: 0, + scales: { + xAxes: [{ + type: 'category', + scaleLabel: { + display: true, + labelString: 'Timestamp', + }, + }], + yAxes: [{ + type: 'linear', + scaleLabel: { + display: true, + labelString: 'Values', + }, + }], + }, + tooltips: { + mode: 'point', + intersect: true, + }, + hover: { + mode: 'index', + intersect: false, + animationDuration: 0, + }, + legend: { + position: 'right', + labels: { + usePointStyle: true, + }, + }, + animation: { + duration: 0, + }, + responsive: true, + responsiveAnimationDuration: 0, + maintainAspectRatio: false, }, - series: {{series|safe}}, }); }); </script> diff --git a/yardstick/common/utils.py b/yardstick/common/utils.py index 51313ef47..9eba896e2 100644 --- a/yardstick/common/utils.py +++ b/yardstick/common/utils.py @@ -293,6 +293,17 @@ def make_ipv4_address(ip_addr): return ipaddress.IPv4Address(six.text_type(ip_addr)) +def get_ip_range_count(iprange): + start_range, end_range = iprange.split("-") + start = int(make_ipv4_address(start_range)) + end = int(make_ipv4_address(end_range)) + return end - start + + +def get_ip_range_start(iprange): + return str(make_ipv4_address(iprange.split("-")[0])) + + def safe_ip_address(ip_addr): """ get ip address version v6 or v4 """ try: diff --git a/yardstick/network_services/libs/ixia_libs/ixnet/ixnet_api.py b/yardstick/network_services/libs/ixia_libs/ixnet/ixnet_api.py index 1f465bde5..cc627ef78 100644 --- a/yardstick/network_services/libs/ixia_libs/ixnet/ixnet_api.py +++ b/yardstick/network_services/libs/ixia_libs/ixnet/ixnet_api.py @@ -49,6 +49,19 @@ PROTOCOL_STATUS_DOWN = ['down', 'notStarted'] SUPPORTED_PROTO = [PROTO_UDP] +SUPPORTED_DSCP_CLASSES = [ + 'defaultPHB', + 'classSelectorPHB', + 'assuredForwardingPHB', + 'expeditedForwardingPHB'] + +SUPPORTED_TOS_FIELDS = [ + 'precedence', + 'delay', + 'throughput', + 'reliability' +] + class Vlan(object): def __init__(self, @@ -139,6 +152,9 @@ class IxNextgen(object): # pragma: no cover vports = self.ixnet.getList(self.ixnet.getRoot(), 'vport') return vports + def get_static_interface(self, vport): + return self.ixnet.getList(vport, 'interface') + def _get_config_element_by_flow_group_name(self, flow_group_name): """Get a config element using the flow group name @@ -198,9 +214,18 @@ class IxNextgen(object): # pragma: no cover :param proto: IxNet protocol str representation, e.g.: '::ixNet::OBJ-/topology:2/deviceGroup:1/ethernet:1/ipv4:L14' - :return: (str) protocol status: 'up', 'down' or 'notStarted' + :return: (list) protocol status: list of sessions protocol + statuses which include states 'up', 'down' and 'notStarted' + """ + return self.ixnet.getAttribute(proto, '-sessionStatus') + + def get_topology_device_groups(self, topology): + """Get list of device groups in topology + + :param topology: (str) topology descriptor + :return: (list) list of device groups descriptors """ - return self.ixnet.getAttribute(proto, '-sessionStatus')[0] + return self.ixnet.getList(topology, 'deviceGroup') def is_traffic_running(self): """Returns true if traffic state == TRAFFIC_STATUS_STARTED""" @@ -218,8 +243,8 @@ class IxNextgen(object): # pragma: no cover :return: (bool) True if all protocols status is 'up', False if any protocol status is 'down' or 'notStarted' """ - return all(self._get_protocol_status(proto) == PROTOCOL_STATUS_UP - for proto in protocols) + return all(session_status is PROTOCOL_STATUS_UP for proto in protocols + for session_status in self._get_protocol_status(proto)) def is_protocols_stopped(self, protocols): """Returns true if all protocols statuses are in PROTOCOL_STATUS_DOWN @@ -229,8 +254,8 @@ class IxNextgen(object): # pragma: no cover :return: (bool) True if all protocols status is 'down' or 'notStarted', False if any protocol status is 'up' """ - return all(self._get_protocol_status(proto) in PROTOCOL_STATUS_DOWN - for proto in protocols) + return all(session_status in PROTOCOL_STATUS_DOWN for proto in protocols + for session_status in self._get_protocol_status(proto)) @staticmethod def _parse_framesize(framesize): @@ -392,7 +417,7 @@ class IxNextgen(object): # pragma: no cover self._create_flow_groups(uplink_endpoints, downlink_endpoints) self._setup_config_elements() - def create_ipv4_traffic_model(self, uplink_topologies, downlink_topologies): + def create_ipv4_traffic_model(self, uplink_endpoints, downlink_endpoints): """Create a traffic item and the needed flow groups Each flow group inside the traffic item (only one is present) @@ -404,7 +429,7 @@ class IxNextgen(object): # pragma: no cover FlowGroup4: uplink2 <- downlink2 """ self._create_traffic_item('ipv4') - self._create_flow_groups(uplink_topologies, downlink_topologies) + self._create_flow_groups(uplink_endpoints, downlink_endpoints) self._setup_config_elements(False) def _update_frame_mac(self, ethernet_descriptor, field, mac_address): @@ -597,23 +622,25 @@ class IxNextgen(object): # pragma: no cover 'precedence': [1, 4, 7] } """ - if 'raw' in priority: + if priority.get('raw'): priority_field = self._get_field_in_stack_item(ip_descriptor, 'priority.raw') self._set_priority_field(priority_field, priority['raw']) - elif 'dscp' in priority: + elif priority.get('dscp'): for field, value in priority['dscp'].items(): - priority_field = self._get_field_in_stack_item( - ip_descriptor, - 'priority.ds.phb.{field}.{field}'.format(field=field)) - self._set_priority_field(priority_field, value) + if field in SUPPORTED_DSCP_CLASSES: + priority_field = self._get_field_in_stack_item( + ip_descriptor, + 'priority.ds.phb.{field}.{field}'.format(field=field)) + self._set_priority_field(priority_field, value) - elif 'tos' in priority: + elif priority.get('tos'): for field, value in priority['tos'].items(): - priority_field = self._get_field_in_stack_item( - ip_descriptor, 'priority.tos.' + field) - self._set_priority_field(priority_field, value) + if field in SUPPORTED_TOS_FIELDS: + priority_field = self._get_field_in_stack_item( + ip_descriptor, 'priority.tos.' + field) + self._set_priority_field(priority_field, value) def _set_priority_field(self, field_descriptor, value): """Set the priority field described by field_descriptor @@ -938,7 +965,7 @@ class IxNextgen(object): # pragma: no cover self.ixnet.commit() return obj - def add_pppox_client(self, xproto, auth, user, pwd): + def add_pppox_client(self, xproto, auth, user, pwd, enable_redial=True): log.debug( "add_pppox_client: xproto='%s', auth='%s', user='%s', pwd='%s'", xproto, auth, user, pwd) @@ -958,6 +985,10 @@ class IxNextgen(object): # pragma: no cover else: raise NotImplementedError() + if enable_redial: + redial = self.ixnet.getAttribute(obj, '-enableRedial') + self.ixnet.setAttribute(redial + '/singleValue', '-value', 'true') + self.ixnet.commit() return obj @@ -986,3 +1017,37 @@ class IxNextgen(object): # pragma: no cover '-value', bgp_type) self.ixnet.commit() return obj + + def add_interface(self, vport, ip, mac=None, gateway=None): + """Add protocol interface to the vport""" + log.debug("add_interface: mac='%s', ip='%s', gateway='%s'", mac, ip, + gateway) + obj = self.ixnet.add(vport, 'interface') + self.ixnet.commit() + + if mac is not None: + self.ixnet.setMultiAttribute(obj + '/ethernet', '-macAddress', mac) + + ipv4 = self.ixnet.add(obj, 'ipv4') + self.ixnet.setMultiAttribute(ipv4, '-ip', ip) + + if gateway is not None: + self.ixnet.setMultiAttribute(ipv4, '-gateway', gateway) + + self.ixnet.commit() + + self.ixnet.setMultiAttribute(obj, '-enabled', 'true') + self.ixnet.commit() + + return obj + + def add_static_ipv4(self, iface, vport, start_ip, count, mask='24'): + """Add static IP range to the interface""" + log.debug("add_static_ipv4: start_ip:'%s', count:'%s'", + start_ip, count) + obj = self.ixnet.add(vport + '/protocols/static', 'ip') + + self.ixnet.setMultiAttribute(obj, '-protocolInterface', iface, + '-ipStart', start_ip, '-count', count, + '-mask', mask, '-enabled', 'true') + self.ixnet.commit() diff --git a/yardstick/network_services/traffic_profile/__init__.py b/yardstick/network_services/traffic_profile/__init__.py index 91d8a665f..72a61b6b4 100644 --- a/yardstick/network_services/traffic_profile/__init__.py +++ b/yardstick/network_services/traffic_profile/__init__.py @@ -23,6 +23,7 @@ def register_modules(): 'yardstick.network_services.traffic_profile.http_ixload', 'yardstick.network_services.traffic_profile.ixia_rfc2544', 'yardstick.network_services.traffic_profile.prox_ACL', + 'yardstick.network_services.traffic_profile.prox_irq', 'yardstick.network_services.traffic_profile.prox_binsearch', 'yardstick.network_services.traffic_profile.prox_profile', 'yardstick.network_services.traffic_profile.prox_ramp', diff --git a/yardstick/network_services/traffic_profile/base.py b/yardstick/network_services/traffic_profile/base.py index ea3f17874..2fdf6ce4a 100644 --- a/yardstick/network_services/traffic_profile/base.py +++ b/yardstick/network_services/traffic_profile/base.py @@ -36,7 +36,7 @@ class TrafficProfileConfig(object): self.description = tp_config.get('description') tprofile = tp_config['traffic_profile'] self.traffic_type = tprofile.get('traffic_type') - self.frame_rate, self.rate_unit = self._parse_rate( + self.frame_rate, self.rate_unit = self.parse_rate( tprofile.get('frame_rate', self.DEFAULT_FRAME_RATE)) self.test_precision = tprofile.get('test_precision') self.packet_sizes = tprofile.get('packet_sizes') @@ -46,7 +46,7 @@ class TrafficProfileConfig(object): self.step_interval = tprofile.get('step_interval') self.enable_latency = tprofile.get('enable_latency', False) - def _parse_rate(self, rate): + def parse_rate(self, rate): """Parse traffic profile rate The line rate can be defined in fps or percentage over the maximum line diff --git a/yardstick/network_services/traffic_profile/http_ixload.py b/yardstick/network_services/traffic_profile/http_ixload.py index c64e7511f..b88aadff7 100644 --- a/yardstick/network_services/traffic_profile/http_ixload.py +++ b/yardstick/network_services/traffic_profile/http_ixload.py @@ -278,8 +278,12 @@ class IXLOADHttpTest(object): :param param: (dict) http_client section from traffic profile :return: """ - self.update_page_size(net_traffic, param["page_object"]) - self.update_user_count(net_traffic, param["simulated_users"]) + page = param.get("page_object") + if page: + self.update_page_size(net_traffic, page) + users = param.get("simulated_users") + if users: + self.update_user_count(net_traffic, users) def update_page_size(self, net_traffic, page_object): """Update page_object field in http client object in net_traffic diff --git a/yardstick/network_services/traffic_profile/ixia_rfc2544.py b/yardstick/network_services/traffic_profile/ixia_rfc2544.py index 83d24a412..35038891b 100644 --- a/yardstick/network_services/traffic_profile/ixia_rfc2544.py +++ b/yardstick/network_services/traffic_profile/ixia_rfc2544.py @@ -13,6 +13,7 @@ # limitations under the License. import logging +import collections from yardstick.common import utils from yardstick.network_services.traffic_profile import base as tp_base @@ -35,6 +36,7 @@ class IXIARFC2544Profile(trex_traffic_profile.TrexProfile): super(IXIARFC2544Profile, self).__init__(yaml_data) self.rate = self.config.frame_rate self.rate_unit = self.config.rate_unit + self.full_profile = {} def _get_ip_and_mask(self, ip_range): _ip_range = ip_range.split('-') @@ -78,6 +80,12 @@ class IXIARFC2544Profile(trex_traffic_profile.TrexProfile): 'outer_l4': {}, } + frame_rate = value.get('frame_rate') + if frame_rate: + flow_rate, flow_rate_unit = self.config.parse_rate(frame_rate) + result[traffickey]['rate'] = flow_rate + result[traffickey]['rate_unit'] = flow_rate_unit + outer_l2 = value.get('outer_l2') if outer_l2: result[traffickey]['outer_l2'].update({ @@ -164,9 +172,7 @@ class IXIARFC2544Profile(trex_traffic_profile.TrexProfile): first_run = self.first_run if self.first_run: self.first_run = False - self.full_profile = {} self.pg_id = 0 - self.update_traffic_profile(traffic_generator) self.max_rate = self.rate self.min_rate = 0.0 else: @@ -237,3 +243,33 @@ class IXIARFC2544Profile(trex_traffic_profile.TrexProfile): samples['latency_ns_max'] = latency_ns_max return completed, samples + + +class IXIARFC2544PppoeScenarioProfile(IXIARFC2544Profile): + """Class handles BNG PPPoE scenario tests traffic profile""" + + def __init__(self, yaml_data): + super(IXIARFC2544PppoeScenarioProfile, self).__init__(yaml_data) + self.full_profile = collections.OrderedDict() + + def _get_flow_groups_params(self): + flows_data = [key for key in self.params.keys() + if key.split('_')[0] in [self.UPLINK, self.DOWNLINK]] + for i in range(len(flows_data)): + uplink = '_'.join([self.UPLINK, str(i)]) + downlink = '_'.join([self.DOWNLINK, str(i)]) + if uplink in flows_data: + self.full_profile.update({uplink: self.params[uplink]}) + if downlink in flows_data: + self.full_profile.update({downlink: self.params[downlink]}) + + def update_traffic_profile(self, traffic_generator): + def port_generator(): + for vld_id, intfs in sorted(traffic_generator.networks.items()): + if not vld_id.startswith((self.UPLINK, self.DOWNLINK)): + continue + for intf in intfs: + yield traffic_generator.vnfd_helper.port_num(intf) + + self._get_flow_groups_params() + self.ports = [port for port in port_generator()] diff --git a/yardstick/network_services/traffic_profile/prox_irq.py b/yardstick/network_services/traffic_profile/prox_irq.py new file mode 100644 index 000000000..0ea294914 --- /dev/null +++ b/yardstick/network_services/traffic_profile/prox_irq.py @@ -0,0 +1,48 @@ +# Copyright (c) 2016-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +""" Fixed traffic profile definitions """ + +import logging +import time + +from yardstick.network_services.traffic_profile.prox_profile import ProxProfile + +LOG = logging.getLogger(__name__) + + +class ProxIrqProfile(ProxProfile): + """ + This profile adds a single stream at the beginning of the traffic session + """ + + def __init__(self, tp_config): + super(ProxIrqProfile, self).__init__(tp_config) + + def init(self, queue): + self.queue = queue + self.queue.cancel_join_thread() + + def execute_traffic(self, traffic_generator): + LOG.debug("Prox_IRQ Execute Traffic....") + time.sleep(5) + + def is_ended(self): + return False + + def run_test(self): + """Run the test + """ + + LOG.info("Prox_IRQ ....") diff --git a/yardstick/network_services/vnf_generic/vnf/prox_helpers.py b/yardstick/network_services/vnf_generic/vnf/prox_helpers.py index e9d83623b..cd3035ef8 100644 --- a/yardstick/network_services/vnf_generic/vnf/prox_helpers.py +++ b/yardstick/network_services/vnf_generic/vnf/prox_helpers.py @@ -561,6 +561,41 @@ class ProxSocketHelper(object): tsc = int(ret[3]) return rx, tx, drop, tsc + def irq_core_stats(self, cores_tasks): + """ get IRQ stats per core""" + + stat = {} + core = 0 + task = 0 + for core, task in cores_tasks: + self.put_command("stats task.core({}).task({}).max_irq,task.core({}).task({}).irq(0)," + "task.core({}).task({}).irq(1),task.core({}).task({}).irq(2)," + "task.core({}).task({}).irq(3),task.core({}).task({}).irq(4)," + "task.core({}).task({}).irq(5),task.core({}).task({}).irq(6)," + "task.core({}).task({}).irq(7),task.core({}).task({}).irq(8)," + "task.core({}).task({}).irq(9),task.core({}).task({}).irq(10)," + "task.core({}).task({}).irq(11),task.core({}).task({}).irq(12)" + "\n".format(core, task, core, task, core, task, core, task, + core, task, core, task, core, task, core, task, + core, task, core, task, core, task, core, task, + core, task, core, task)) + in_data_str = self.get_data().split(",") + ret = [try_int(s, 0) for s in in_data_str] + key = "core_" + str(core) + try: + stat[key] = {"cpu": core, "max_irq": ret[0], "bucket_0" : ret[1], + "bucket_1" : ret[2], "bucket_2" : ret[3], + "bucket_3" : ret[4], "bucket_4" : ret[5], + "bucket_5" : ret[6], "bucket_6" : ret[7], + "bucket_7" : ret[8], "bucket_8" : ret[9], + "bucket_9" : ret[10], "bucket_10" : ret[11], + "bucket_11" : ret[12], "bucket_12" : ret[13], + "overflow": ret[10] + ret[11] + ret[12] + ret[13]} + except (KeyError, IndexError): + LOG.error("Corrupted PACKET %s", in_data_str) + + return stat + def multi_port_stats(self, ports): """get counter values from all ports at once""" @@ -754,7 +789,6 @@ class ProxSocketHelper(object): self.put_command("quit_force\n") time.sleep(3) - _LOCAL_OBJECT = object() @@ -836,6 +870,30 @@ class ProxDpdkVnfSetupEnvHelper(DpdkVnfSetupEnvHelper): file_str[1] = self.additional_files[base_name] return '"'.join(file_str) + def _make_core_list(self, inputStr): + + my_input = inputStr.split("core ", 1)[1] + ok_list = set() + + substrs = [x.strip() for x in my_input.split(',')] + for i in substrs: + try: + ok_list.add(int(i)) + + except ValueError: + try: + substr = [int(k.strip()) for k in i.split('-')] + if len(substr) > 1: + startstr = substr[0] + endstr = substr[len(substr) - 1] + for z in range(startstr, endstr + 1): + ok_list.add(z) + except ValueError: + LOG.error("Error in cores list ... resuming ") + return ok_list + + return ok_list + def generate_prox_config_file(self, config_path): sections = [] prox_config = ConfigParser(config_path, sections) @@ -855,6 +913,18 @@ class ProxDpdkVnfSetupEnvHelper(DpdkVnfSetupEnvHelper): if section_data[0] == "mac": section_data[1] = "hardware" + # adjust for range of cores + new_sections = [] + for section_name, section in sections: + if section_name.startswith('core') and section_name.find('$') == -1: + core_list = self._make_core_list(section_name) + for core in core_list: + new_sections.append(["core " + str(core), section]) + else: + new_sections.append([section_name, section]) + + sections = new_sections + # search for dst mac for _, section in sections: for section_data in section: @@ -2067,3 +2137,15 @@ class ProxlwAFTRProfileHelper(ProxProfileHelper): data_helper.latency = self.get_latency() return data_helper.result_tuple, data_helper.samples + + +class ProxIrqProfileHelper(ProxProfileHelper): + + __prox_profile_type__ = "IRQ Query" + + def __init__(self, resource_helper): + super(ProxIrqProfileHelper, self).__init__(resource_helper) + self._cores_tuple = None + self._ports_tuple = None + self.step_delta = 5 + self.step_time = 0.5 diff --git a/yardstick/network_services/vnf_generic/vnf/prox_irq.py b/yardstick/network_services/vnf_generic/vnf/prox_irq.py new file mode 100644 index 000000000..dda26b0fe --- /dev/null +++ b/yardstick/network_services/vnf_generic/vnf/prox_irq.py @@ -0,0 +1,200 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import errno +import logging +import copy +import time + +from yardstick.common.process import check_if_process_failed +from yardstick.network_services.utils import get_nsb_option +from yardstick.network_services.vnf_generic.vnf.prox_vnf import ProxApproxVnf +from yardstick.network_services.vnf_generic.vnf.sample_vnf import SampleVNFTrafficGen +from yardstick.benchmark.contexts.base import Context +from yardstick.network_services.vnf_generic.vnf.prox_helpers import CoreSocketTuple +LOG = logging.getLogger(__name__) + + +class ProxIrq(SampleVNFTrafficGen): + + def __init__(self, name, vnfd, task_id, setup_env_helper_type=None, + resource_helper_type=None): + vnfd_cpy = copy.deepcopy(vnfd) + super(ProxIrq, self).__init__(name, vnfd_cpy, task_id) + + self._vnf_wrapper = ProxApproxVnf( + name, vnfd, task_id, setup_env_helper_type, resource_helper_type) + self.bin_path = get_nsb_option('bin_path', '') + self.name = self._vnf_wrapper.name + self.ssh_helper = self._vnf_wrapper.ssh_helper + self.setup_helper = self._vnf_wrapper.setup_helper + self.resource_helper = self._vnf_wrapper.resource_helper + self.scenario_helper = self._vnf_wrapper.scenario_helper + self.irq_cores = None + + def terminate(self): + self._vnf_wrapper.terminate() + super(ProxIrq, self).terminate() + + def instantiate(self, scenario_cfg, context_cfg): + self._vnf_wrapper.instantiate(scenario_cfg, context_cfg) + self._tg_process = self._vnf_wrapper._vnf_process + + def wait_for_instantiate(self): + self._vnf_wrapper.wait_for_instantiate() + + def get_irq_cores(self): + cores = [] + mode = "irq" + + for section_name, section in self.setup_helper.prox_config_data: + if not section_name.startswith("core"): + continue + irq_mode = task_present = False + task_present_task = 0 + for key, value in section: + if key == "mode" and value == mode: + irq_mode = True + if key == "task": + task_present = True + task_present_task = int(value) + + if irq_mode: + if not task_present: + task_present_task = 0 + core_tuple = CoreSocketTuple(section_name) + core = core_tuple.core_id + cores.append((core, task_present_task)) + + return cores + +class ProxIrqVNF(ProxIrq, SampleVNFTrafficGen): + + APP_NAME = 'ProxIrqVNF' + + def __init__(self, name, vnfd, task_id, setup_env_helper_type=None, + resource_helper_type=None): + ProxIrq.__init__(self, name, vnfd, task_id, setup_env_helper_type, + resource_helper_type) + + self.start_test_time = None + self.end_test_time = None + + def vnf_execute(self, cmd, *args, **kwargs): + ignore_errors = kwargs.pop("_ignore_errors", False) + try: + return self.resource_helper.execute(cmd, *args, **kwargs) + except OSError as e: + if e.errno in {errno.EPIPE, errno.ESHUTDOWN, errno.ECONNRESET}: + if ignore_errors: + LOG.debug("ignoring vnf_execute exception %s for command %s", e, cmd) + else: + raise + else: + raise + + def collect_kpi(self): + # check if the tg processes have exited + physical_node = Context.get_physical_node_from_server( + self.scenario_helper.nodes[self.name]) + + result = {"physical_node": physical_node} + for proc in (self._tg_process, self._traffic_process): + check_if_process_failed(proc) + + if self.resource_helper is None: + return result + + if self.irq_cores is None: + self.setup_helper.build_config_file() + self.irq_cores = self.get_irq_cores() + + data = self.vnf_execute('irq_core_stats', self.irq_cores) + new_data = copy.deepcopy(data) + + self.end_test_time = time.time() + self.vnf_execute('reset_stats') + + if self.start_test_time is None: + new_data = {} + else: + test_time = self.end_test_time - self.start_test_time + for index, item in data.items(): + for counter, value in item.items(): + if counter.startswith("bucket_")or \ + counter.startswith("overflow"): + if value is 0: + del new_data[index][counter] + else: + new_data[index][counter] = float(value) / test_time + + self.start_test_time = time.time() + + result["collect_stats"] = new_data + LOG.debug("%s collect KPIs %s", self.APP_NAME, result) + + return result + +class ProxIrqGen(ProxIrq, SampleVNFTrafficGen): + + APP_NAME = 'ProxIrqGen' + + def __init__(self, name, vnfd, task_id, setup_env_helper_type=None, + resource_helper_type=None): + ProxIrq.__init__(self, name, vnfd, task_id, setup_env_helper_type, + resource_helper_type) + self.start_test_time = None + self.end_test_time = None + + def collect_kpi(self): + # check if the tg processes have exited + physical_node = Context.get_physical_node_from_server( + self.scenario_helper.nodes[self.name]) + + result = {"physical_node": physical_node} + for proc in (self._tg_process, self._traffic_process): + check_if_process_failed(proc) + + if self.resource_helper is None: + return result + + if self.irq_cores is None: + self.setup_helper.build_config_file() + self.irq_cores = self.get_irq_cores() + + data = self.resource_helper.sut.irq_core_stats(self.irq_cores) + new_data = copy.deepcopy(data) + + self.end_test_time = time.time() + self.resource_helper.sut.reset_stats() + + if self.start_test_time is None: + new_data = {} + else: + test_time = self.end_test_time - self.start_test_time + for index, item in data.items(): + for counter, value in item.items(): + if counter.startswith("bucket_") or \ + counter.startswith("overflow"): + if value is 0: + del new_data[index][counter] + else: + new_data[index][counter] = float(value) / test_time + + self.start_test_time = time.time() + + result["collect_stats"] = new_data + LOG.debug("%s collect KPIs %s", self.APP_NAME, result) + + return result diff --git a/yardstick/network_services/vnf_generic/vnf/sample_vnf.py b/yardstick/network_services/vnf_generic/vnf/sample_vnf.py index 673344f4e..8833b88f2 100644 --- a/yardstick/network_services/vnf_generic/vnf/sample_vnf.py +++ b/yardstick/network_services/vnf_generic/vnf/sample_vnf.py @@ -180,7 +180,7 @@ class DpdkVnfSetupEnvHelper(SetupEnvHelper): """No actions/rules (flows) by default""" return None - def _build_pipeline_kwargs(self, cfg_file=None): + def _build_pipeline_kwargs(self, cfg_file=None, script=None): tool_path = self.ssh_helper.provision_tool(tool_file=self.APP_NAME) # count the number of actual ports in the list of pairs # remove duplicate ports @@ -201,7 +201,7 @@ class DpdkVnfSetupEnvHelper(SetupEnvHelper): self.pipeline_kwargs = { 'cfg_file': cfg_file if cfg_file else self.CFG_CONFIG, - 'script': self.CFG_SCRIPT, + 'script': script if script else self.CFG_SCRIPT, 'port_mask_hex': ports_mask_hex, 'tool_path': tool_path, 'hwlb': hwlb, @@ -898,6 +898,8 @@ class SampleVNFTrafficGen(GenericTrafficGen): self.scenario_helper.nodes[self.name] ) + self.resource_helper.context_cfg = context_cfg + self.resource_helper.setup() # must generate_cfg after DPDK bind because we need port number self.resource_helper.generate_cfg() diff --git a/yardstick/network_services/vnf_generic/vnf/tg_rfc2544_ixia.py b/yardstick/network_services/vnf_generic/vnf/tg_rfc2544_ixia.py index 89f8194c0..4d6bd422d 100644 --- a/yardstick/network_services/vnf_generic/vnf/tg_rfc2544_ixia.py +++ b/yardstick/network_services/vnf_generic/vnf/tg_rfc2544_ixia.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2017 Intel Corporation +# Copyright (c) 2016-2018 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -12,9 +12,12 @@ # See the License for the specific language governing permissions and # limitations under the License. +import ipaddress import logging +import six from yardstick.common import utils +from yardstick.common import exceptions from yardstick.network_services.libs.ixia_libs.ixnet import ixnet_api from yardstick.network_services.vnf_generic.vnf.sample_vnf import SampleVNFTrafficGen from yardstick.network_services.vnf_generic.vnf.sample_vnf import ClientResourceHelper @@ -25,6 +28,409 @@ LOG = logging.getLogger(__name__) WAIT_AFTER_CFG_LOAD = 10 WAIT_FOR_TRAFFIC = 30 +WAIT_PROTOCOLS_STARTED = 360 + + +class IxiaBasicScenario(object): + """Ixia Basic scenario for flow from port to port""" + + def __init__(self, client, context_cfg, ixia_cfg): + + self.client = client + self.context_cfg = context_cfg + self.ixia_cfg = ixia_cfg + + self._uplink_vports = None + self._downlink_vports = None + + def apply_config(self): + pass + + def run_protocols(self): + pass + + def stop_protocols(self): + pass + + def create_traffic_model(self, traffic_profile=None): + # pylint: disable=unused-argument + vports = self.client.get_vports() + self._uplink_vports = vports[::2] + self._downlink_vports = vports[1::2] + self.client.create_traffic_model(self._uplink_vports, + self._downlink_vports) + + +class IxiaL3Scenario(IxiaBasicScenario): + """Ixia scenario for L3 flow between static ip's""" + + def _add_static_ips(self): + vports = self.client.get_vports() + uplink_intf_vport = [(self.client.get_static_interface(vport), vport) + for vport in vports[::2]] + downlink_intf_vport = [(self.client.get_static_interface(vport), vport) + for vport in vports[1::2]] + + for index in range(len(uplink_intf_vport)): + intf, vport = uplink_intf_vport[index] + try: + iprange = self.ixia_cfg['flow'].get('src_ip')[index] + start_ip = utils.get_ip_range_start(iprange) + count = utils.get_ip_range_count(iprange) + self.client.add_static_ipv4(intf, vport, start_ip, count) + except IndexError: + raise exceptions.IncorrectFlowOption( + option="src_ip", link="uplink_{}".format(index)) + + intf, vport = downlink_intf_vport[index] + try: + iprange = self.ixia_cfg['flow'].get('dst_ip')[index] + start_ip = utils.get_ip_range_start(iprange) + count = utils.get_ip_range_count(iprange) + self.client.add_static_ipv4(intf, vport, start_ip, count) + except IndexError: + raise exceptions.IncorrectFlowOption( + option="dst_ip", link="downlink_{}".format(index)) + + def _add_interfaces(self): + vports = self.client.get_vports() + uplink_vports = (vport for vport in vports[::2]) + downlink_vports = (vport for vport in vports[1::2]) + + ix_node = next(node for _, node in self.context_cfg['nodes'].items() + if node['role'] == 'IxNet') + + for intf in ix_node['interfaces'].values(): + ip = intf.get('local_ip') + mac = intf.get('local_mac') + gateway = None + try: + gateway = next(route.get('gateway') + for route in ix_node.get('routing_table') + if route.get('if') == intf.get('ifname')) + except StopIteration: + LOG.debug("Gateway not provided") + + if 'uplink' in intf.get('vld_id'): + self.client.add_interface(next(uplink_vports), + ip, mac, gateway) + else: + self.client.add_interface(next(downlink_vports), + ip, mac, gateway) + + def apply_config(self): + self._add_interfaces() + self._add_static_ips() + + def create_traffic_model(self, traffic_profile=None): + # pylint: disable=unused-argument + vports = self.client.get_vports() + self._uplink_vports = vports[::2] + self._downlink_vports = vports[1::2] + + uplink_endpoints = [port + '/protocols/static' + for port in self._uplink_vports] + downlink_endpoints = [port + '/protocols/static' + for port in self._downlink_vports] + + self.client.create_ipv4_traffic_model(uplink_endpoints, + downlink_endpoints) + + +class IxiaPppoeClientScenario(object): + def __init__(self, client, context_cfg, ixia_cfg): + + self.client = client + + self._uplink_vports = None + self._downlink_vports = None + + self._access_topologies = [] + self._core_topologies = [] + + self._context_cfg = context_cfg + self._ixia_cfg = ixia_cfg + self.protocols = [] + self.device_groups = [] + + def apply_config(self): + vports = self.client.get_vports() + self._uplink_vports = vports[::2] + self._downlink_vports = vports[1::2] + self._fill_ixia_config() + self._apply_access_network_config() + self._apply_core_network_config() + + def create_traffic_model(self, traffic_profile): + endpoints_id_pairs = self._get_endpoints_src_dst_id_pairs( + traffic_profile.full_profile) + endpoints_obj_pairs = \ + self._get_endpoints_src_dst_obj_pairs(endpoints_id_pairs) + uplink_endpoints = endpoints_obj_pairs[::2] + downlink_endpoints = endpoints_obj_pairs[1::2] + self.client.create_ipv4_traffic_model(uplink_endpoints, + downlink_endpoints) + + def run_protocols(self): + LOG.info('PPPoE Scenario - Start Protocols') + self.client.start_protocols() + utils.wait_until_true( + lambda: self.client.is_protocols_running(self.protocols), + timeout=WAIT_PROTOCOLS_STARTED, sleep=2) + + def stop_protocols(self): + LOG.info('PPPoE Scenario - Stop Protocols') + self.client.stop_protocols() + + def _get_intf_addr(self, intf): + """Retrieve interface IP address and mask + + :param intf: could be the string which represents IP address + with mask (e.g 192.168.10.2/24) or a dictionary with the host + name and the port (e.g. {'tg__0': 'xe1'}) + :return: (tuple) pair of ip address and mask + """ + if isinstance(intf, six.string_types): + ip, mask = tuple(intf.split('/')) + return ip, int(mask) + + node_name, intf_name = next(iter(intf.items())) + node = self._context_cfg["nodes"].get(node_name, {}) + interface = node.get("interfaces", {})[intf_name] + ip = interface["local_ip"] + mask = interface["netmask"] + ipaddr = ipaddress.ip_network(six.text_type('{}/{}'.format(ip, mask)), + strict=False) + return ip, ipaddr.prefixlen + + @staticmethod + def _get_endpoints_src_dst_id_pairs(flows_params): + """Get list of flows src/dst port pairs + + Create list of flows src/dst port pairs based on traffic profile + flows data. Each uplink/downlink pair in traffic profile represents + specific flows between the pair of ports. + + Example ('port' key represents port on which flow will be created): + + Input flows data: + uplink_0: + ipv4: + id: 1 + port: xe0 + downlink_0: + ipv4: + id: 2 + port: xe1 + uplink_1: + ipv4: + id: 3 + port: xe2 + downlink_1: + ipv4: + id: 4 + port: xe3 + + Result list: ['xe0', 'xe1', 'xe2', 'xe3'] + + Result list means that the following flows pairs will be created: + - uplink 0: port xe0 <-> port xe1 + - downlink 0: port xe1 <-> port xe0 + - uplink 1: port xe2 <-> port xe3 + - downlink 1: port xe3 <-> port xe2 + + :param flows_params: ordered dict of traffic profile flows params + :return: (list) list of flows src/dst ports + """ + if len(flows_params) % 2: + raise RuntimeError('Number of uplink/downlink pairs' + ' in traffic profile is not equal') + endpoint_pairs = [] + for flow in flows_params: + port = flows_params[flow]['ipv4'].get('port') + if port is None: + continue + endpoint_pairs.append(port) + return endpoint_pairs + + def _get_endpoints_src_dst_obj_pairs(self, endpoints_id_pairs): + """Create list of uplink/downlink device groups pairs + + Based on traffic profile options, create list of uplink/downlink + device groups pairs between which flow groups will be created: + + 1. In case uplink/downlink flows in traffic profile doesn't have + specified 'port' key, flows will be created between each device + group on access port and device group on corresponding core port. + E.g.: + Device groups created on access port xe0: dg1, dg2, dg3 + Device groups created on core port xe1: dg4 + Flows will be created between: + dg1 -> dg4 + dg4 -> dg1 + dg2 -> dg4 + dg4 -> dg2 + dg3 -> dg4 + dg4 -> dg3 + + 2. In case uplink/downlink flows in traffic profile have specified + 'port' key, flows will be created between device groups on this + port. + E.g., for the following traffic profile + uplink_0: + port: xe0 + downlink_0: + port: xe1 + uplink_1: + port: xe0 + downlink_0: + port: xe3 + Flows will be created between: + Port xe0 (dg1) -> Port xe1 (dg1) + Port xe1 (dg1) -> Port xe0 (dg1) + Port xe0 (dg2) -> Port xe3 (dg1) + Port xe3 (dg3) -> Port xe0 (dg1) + + :param endpoints_id_pairs: (list) List of uplink/downlink flows ports + pairs + :return: (list) list of uplink/downlink device groups descriptors pairs + """ + pppoe = self._ixia_cfg['pppoe_client'] + sessions_per_port = pppoe['sessions_per_port'] + sessions_per_svlan = pppoe['sessions_per_svlan'] + svlan_count = int(sessions_per_port / sessions_per_svlan) + + uplink_ports = [p['tg__0'] for p in self._ixia_cfg['flow']['src_ip']] + downlink_ports = [p['tg__0'] for p in self._ixia_cfg['flow']['dst_ip']] + uplink_port_topology_map = zip(uplink_ports, self._access_topologies) + downlink_port_topology_map = zip(downlink_ports, self._core_topologies) + + port_to_dev_group_mapping = {} + for port, topology in uplink_port_topology_map: + topology_dgs = self.client.get_topology_device_groups(topology) + port_to_dev_group_mapping[port] = topology_dgs + for port, topology in downlink_port_topology_map: + topology_dgs = self.client.get_topology_device_groups(topology) + port_to_dev_group_mapping[port] = topology_dgs + + uplink_endpoints = endpoints_id_pairs[::2] + downlink_endpoints = endpoints_id_pairs[1::2] + + uplink_dev_groups = [] + group_up = [uplink_endpoints[i:i + svlan_count] + for i in range(0, len(uplink_endpoints), svlan_count)] + + for group in group_up: + for i, port in enumerate(group): + uplink_dev_groups.append(port_to_dev_group_mapping[port][i]) + + downlink_dev_groups = [] + for port in downlink_endpoints: + downlink_dev_groups.append(port_to_dev_group_mapping[port][0]) + + endpoint_obj_pairs = [] + [endpoint_obj_pairs.extend([up, down]) + for up, down in zip(uplink_dev_groups, downlink_dev_groups)] + + if not endpoint_obj_pairs: + for up, down in zip(uplink_ports, downlink_ports): + uplink_dev_groups = port_to_dev_group_mapping[up] + downlink_dev_groups = \ + port_to_dev_group_mapping[down] * len(uplink_dev_groups) + [endpoint_obj_pairs.extend(list(i)) + for i in zip(uplink_dev_groups, downlink_dev_groups)] + return endpoint_obj_pairs + + def _fill_ixia_config(self): + pppoe = self._ixia_cfg["pppoe_client"] + ipv4 = self._ixia_cfg["ipv4_client"] + + _ip = [self._get_intf_addr(intf)[0] for intf in pppoe["ip"]] + self._ixia_cfg["pppoe_client"]["ip"] = _ip + + _ip = [self._get_intf_addr(intf)[0] for intf in ipv4["gateway_ip"]] + self._ixia_cfg["ipv4_client"]["gateway_ip"] = _ip + + addrs = [self._get_intf_addr(intf) for intf in ipv4["ip"]] + _ip = [addr[0] for addr in addrs] + _prefix = [addr[1] for addr in addrs] + + self._ixia_cfg["ipv4_client"]["ip"] = _ip + self._ixia_cfg["ipv4_client"]["prefix"] = _prefix + + def _apply_access_network_config(self): + pppoe = self._ixia_cfg["pppoe_client"] + sessions_per_port = pppoe['sessions_per_port'] + sessions_per_svlan = pppoe['sessions_per_svlan'] + svlan_count = int(sessions_per_port / sessions_per_svlan) + + # add topology per uplink port (access network) + for access_tp_id, vport in enumerate(self._uplink_vports): + name = 'Topology access {}'.format(access_tp_id) + tp = self.client.add_topology(name, vport) + self._access_topologies.append(tp) + # add device group per svlan + for dg_id in range(svlan_count): + s_vlan_id = int(pppoe['s_vlan']) + dg_id + access_tp_id * svlan_count + s_vlan = ixnet_api.Vlan(vlan_id=s_vlan_id) + c_vlan = ixnet_api.Vlan(vlan_id=pppoe['c_vlan'], vlan_id_step=1) + name = 'SVLAN {}'.format(s_vlan_id) + dg = self.client.add_device_group(tp, name, sessions_per_svlan) + self.device_groups.append(dg) + # add ethernet layer to device group + ethernet = self.client.add_ethernet(dg, 'Ethernet') + self.protocols.append(ethernet) + self.client.add_vlans(ethernet, [s_vlan, c_vlan]) + # add ppp over ethernet + if 'pap_user' in pppoe: + ppp = self.client.add_pppox_client(ethernet, 'pap', + pppoe['pap_user'], + pppoe['pap_password']) + else: + ppp = self.client.add_pppox_client(ethernet, 'chap', + pppoe['chap_user'], + pppoe['chap_password']) + self.protocols.append(ppp) + + def _apply_core_network_config(self): + ipv4 = self._ixia_cfg["ipv4_client"] + sessions_per_port = ipv4['sessions_per_port'] + sessions_per_vlan = ipv4['sessions_per_vlan'] + vlan_count = int(sessions_per_port / sessions_per_vlan) + + # add topology per downlink port (core network) + for core_tp_id, vport in enumerate(self._downlink_vports): + name = 'Topology core {}'.format(core_tp_id) + tp = self.client.add_topology(name, vport) + self._core_topologies.append(tp) + # add device group per vlan + for dg_id in range(vlan_count): + name = 'Core port {}'.format(core_tp_id) + dg = self.client.add_device_group(tp, name, sessions_per_vlan) + self.device_groups.append(dg) + # add ethernet layer to device group + ethernet = self.client.add_ethernet(dg, 'Ethernet') + self.protocols.append(ethernet) + if 'vlan' in ipv4: + vlan_id = int(ipv4['vlan']) + dg_id + core_tp_id * vlan_count + vlan = ixnet_api.Vlan(vlan_id=vlan_id) + self.client.add_vlans(ethernet, [vlan]) + # add ipv4 layer + gw_ip = ipv4['gateway_ip'][core_tp_id] + # use gw addr to generate ip addr from the same network + ip_addr = ipaddress.IPv4Address(gw_ip) + 1 + ipv4_obj = self.client.add_ipv4(ethernet, name='ipv4', + addr=ip_addr, + addr_step='0.0.0.1', + prefix=ipv4['prefix'][core_tp_id], + gateway=gw_ip) + self.protocols.append(ipv4_obj) + if ipv4.get("bgp"): + bgp_peer_obj = self.client.add_bgp(ipv4_obj, + dut_ip=ipv4["bgp"]["dut_ip"], + local_as=ipv4["bgp"]["as_number"], + bgp_type=ipv4["bgp"].get("bgp_type")) + self.protocols.append(bgp_peer_obj) class IxiaRfc2544Helper(Rfc2544ResourceHelper): @@ -41,6 +447,12 @@ class IxiaResourceHelper(ClientResourceHelper): super(IxiaResourceHelper, self).__init__(setup_helper) self.scenario_helper = setup_helper.scenario_helper + self._ixia_scenarios = { + "IxiaBasic": IxiaBasicScenario, + "IxiaL3": IxiaL3Scenario, + "IxiaPppoeClient": IxiaPppoeClientScenario, + } + self.client = ixnet_api.IxNextgen() if rfc_helper_type is None: @@ -49,6 +461,8 @@ class IxiaResourceHelper(ClientResourceHelper): self.rfc_helper = rfc_helper_type(self.scenario_helper) self.uplink_ports = None self.downlink_ports = None + self.context_cfg = None + self._ix_scenario = None self._connect() def _connect(self, client=None): @@ -57,7 +471,12 @@ class IxiaResourceHelper(ClientResourceHelper): def get_stats(self, *args, **kwargs): return self.client.get_statistics() + def setup(self): + super(IxiaResourceHelper, self).setup() + self._init_ix_scenario() + def stop_collect(self): + self._ix_scenario.stop_protocols() self._terminated.value = 1 def generate_samples(self, ports, duration): @@ -92,14 +511,24 @@ class IxiaResourceHelper(ClientResourceHelper): return samples - def _initialize_client(self): + def _init_ix_scenario(self): + ixia_config = self.scenario_helper.scenario_cfg.get('ixia_config', 'IxiaBasic') + + if ixia_config in self._ixia_scenarios: + scenario_type = self._ixia_scenarios[ixia_config] + + self._ix_scenario = scenario_type(self.client, self.context_cfg, + self.scenario_helper.scenario_cfg['options']) + else: + raise RuntimeError( + "IXIA config type '{}' not supported".format(ixia_config)) + + def _initialize_client(self, traffic_profile): """Initialize the IXIA IxNetwork client and configure the server""" self.client.clear_config() self.client.assign_ports() - vports = self.client.get_vports() - uplink_vports = vports[::2] - downlink_vports = vports[1::2] - self.client.create_traffic_model(uplink_vports, downlink_vports) + self._ix_scenario.apply_config() + self._ix_scenario.create_traffic_model(traffic_profile) def run_traffic(self, traffic_profile, *args): if self._terminated.value: @@ -111,7 +540,8 @@ class IxiaResourceHelper(ClientResourceHelper): default = "00:00:00:00:00:00" self._build_ports() - self._initialize_client() + traffic_profile.update_traffic_profile(self) + self._initialize_client(traffic_profile) mac = {} for port_name in self.vnfd_helper.port_pairs.all_ports: @@ -123,6 +553,8 @@ class IxiaResourceHelper(ClientResourceHelper): mac["src_mac_{}".format(port_num)] = virt_intf.get("local_mac", default) mac["dst_mac_{}".format(port_num)] = virt_intf.get("dst_mac", default) + self._ix_scenario.run_protocols() + try: while not self._terminated.value: first_run = traffic_profile.execute_traffic( @@ -144,6 +576,7 @@ class IxiaResourceHelper(ClientResourceHelper): except Exception: # pylint: disable=broad-except LOG.exception('Run Traffic terminated') + self._ix_scenario.stop_protocols() self._terminated.value = 1 def collect_kpi(self): diff --git a/yardstick/network_services/vnf_generic/vnf/vpe_vnf.py b/yardstick/network_services/vnf_generic/vnf/vpe_vnf.py index 349ef7888..dd3221386 100644 --- a/yardstick/network_services/vnf_generic/vnf/vpe_vnf.py +++ b/yardstick/network_services/vnf_generic/vnf/vpe_vnf.py @@ -106,6 +106,7 @@ class VpeApproxSetupEnvHelper(DpdkVnfSetupEnvHelper): action_bulk_file = vnf_cfg.get('action_bulk_file', '/tmp/action_bulk_512.txt') full_tm_profile_file = vnf_cfg.get('full_tm_profile_file', '/tmp/full_tm_profile_10G.cfg') config_file = vnf_cfg.get('file', '/tmp/vpe_config') + script_file = vnf_cfg.get('script_file', None) vpe_vars = { "bin_path": self.ssh_helper.bin_path, "socket": self.socket, @@ -113,8 +114,16 @@ class VpeApproxSetupEnvHelper(DpdkVnfSetupEnvHelper): self._build_vnf_ports() vpe_conf = ConfigCreate(self.vnfd_helper, self.socket) + if script_file is None: + # autogenerate vpe_script if not given + vpe_script = vpe_conf.generate_vpe_script(self.vnfd_helper.interfaces) + script_file = self.CFG_SCRIPT + else: + with utils.open_relative_file(script_file, task_path) as handle: + vpe_script = handle.read() + config_basename = posixpath.basename(config_file) - script_basename = posixpath.basename(self.CFG_SCRIPT) + script_basename = posixpath.basename(script_file) with utils.open_relative_file(action_bulk_file, task_path) as handle: action_bulk = handle.read() @@ -125,8 +134,6 @@ class VpeApproxSetupEnvHelper(DpdkVnfSetupEnvHelper): with utils.open_relative_file(config_file, task_path) as handle: vpe_config = handle.read() - # vpe_script needs to be autogenerated - vpe_script = vpe_conf.generate_vpe_script(self.vnfd_helper.interfaces) # upload the 4 config files to the target server self.ssh_helper.upload_config_file(config_basename, vpe_config.format(**vpe_vars)) self.ssh_helper.upload_config_file(script_basename, vpe_script.format(**vpe_vars)) @@ -138,7 +145,8 @@ class VpeApproxSetupEnvHelper(DpdkVnfSetupEnvHelper): LOG.info("Provision and start the %s", self.APP_NAME) LOG.info(config_file) LOG.info(self.CFG_SCRIPT) - self._build_pipeline_kwargs(cfg_file='/tmp/' + config_basename) + self._build_pipeline_kwargs(cfg_file='/tmp/' + config_basename, + script='/tmp/' + script_basename) return self.PIPELINE_COMMAND.format(**self.pipeline_kwargs) diff --git a/yardstick/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py b/yardstick/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py index b5051e90c..413bb68b7 100644 --- a/yardstick/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py +++ b/yardstick/tests/unit/benchmark/contexts/standalone/test_ovs_dpdk.py @@ -160,6 +160,13 @@ class OvsDpdkContextTestCase(unittest.TestCase): } self.ovs_dpdk.wait_for_vswitchd = 0 self.assertIsNone(self.ovs_dpdk.setup_ovs_bridge_add_flows()) + self.ovs_dpdk.ovs_properties.update( + {'dpdk_pmd-rxq-affinity': {'0': "0:1"}}) + self.ovs_dpdk.ovs_properties.update( + {'vhost_pmd-rxq-affinity': {'0': "0:1"}}) + self.NETWORKS['private_0'].update({'port_num': '0'}) + self.NETWORKS['public_0'].update({'port_num': '1'}) + self.ovs_dpdk.setup_ovs_bridge_add_flows() @mock.patch("yardstick.ssh.SSH") def test_cleanup_ovs_dpdk_env(self, mock_ssh): diff --git a/yardstick/tests/unit/benchmark/core/test_report.py b/yardstick/tests/unit/benchmark/core/test_report.py index 3e80dcc45..11d017ff0 100644 --- a/yardstick/tests/unit/benchmark/core/test_report.py +++ b/yardstick/tests/unit/benchmark/core/test_report.py @@ -20,10 +20,10 @@ GOOD_YAML_NAME = 'fake_name' GOOD_TASK_ID = str(uuid.uuid4()) GOOD_DB_FIELDKEYS = [{'fieldKey': 'fake_key'}] GOOD_DB_TASK = [{ - 'fake_key': 0.000, - 'time': '0000-00-00T00:00:00.000000Z', + 'fake_key': 1.234, + 'time': '0000-00-00T12:34:56.789012Z', }] -GOOD_TIMESTAMP = ['00:00:00.000000'] +GOOD_TIMESTAMP = ['12:34:56.789012'] BAD_YAML_NAME = 'F@KE_NAME' BAD_TASK_ID = 'aaaaaa-aaaaaaaa-aaaaaaaaaa-aaaaaa' @@ -47,23 +47,23 @@ class JSTreeTestCase(unittest.TestCase): def test_format_for_jstree(self): data = [ - {'data': [0, ], 'name': 'tg__0.DropPackets'}, - {'data': [548, ], 'name': 'tg__0.LatencyAvg.5'}, - {'data': [1172, ], 'name': 'tg__0.LatencyAvg.6'}, - {'data': [1001, ], 'name': 'tg__0.LatencyMax.5'}, - {'data': [1468, ], 'name': 'tg__0.LatencyMax.6'}, - {'data': [18.11, ], 'name': 'tg__0.RxThroughput'}, - {'data': [18.11, ], 'name': 'tg__0.TxThroughput'}, - {'data': [0, ], 'name': 'tg__1.DropPackets'}, - {'data': [548, ], 'name': 'tg__1.LatencyAvg.5'}, - {'data': [1172, ], 'name': 'tg__1.LatencyAvg.6'}, - {'data': [1001, ], 'name': 'tg__1.LatencyMax.5'}, - {'data': [1468, ], 'name': 'tg__1.LatencyMax.6'}, - {'data': [18.1132084505, ], 'name': 'tg__1.RxThroughput'}, - {'data': [18.1157260383, ], 'name': 'tg__1.TxThroughput'}, - {'data': [9057888, ], 'name': 'vnf__0.curr_packets_in'}, - {'data': [0, ], 'name': 'vnf__0.packets_dropped'}, - {'data': [617825443, ], 'name': 'vnf__0.packets_fwd'}, + {'data': [0, ], 'label': 'tg__0.DropPackets'}, + {'data': [548, ], 'label': 'tg__0.LatencyAvg.5'}, + {'data': [1172, ], 'label': 'tg__0.LatencyAvg.6'}, + {'data': [1001, ], 'label': 'tg__0.LatencyMax.5'}, + {'data': [1468, ], 'label': 'tg__0.LatencyMax.6'}, + {'data': [18.11, ], 'label': 'tg__0.RxThroughput'}, + {'data': [18.11, ], 'label': 'tg__0.TxThroughput'}, + {'data': [0, ], 'label': 'tg__1.DropPackets'}, + {'data': [548, ], 'label': 'tg__1.LatencyAvg.5'}, + {'data': [1172, ], 'label': 'tg__1.LatencyAvg.6'}, + {'data': [1001, ], 'label': 'tg__1.LatencyMax.5'}, + {'data': [1468, ], 'label': 'tg__1.LatencyMax.6'}, + {'data': [18.1132084505, ], 'label': 'tg__1.RxThroughput'}, + {'data': [18.1157260383, ], 'label': 'tg__1.TxThroughput'}, + {'data': [9057888, ], 'label': 'vnf__0.curr_packets_in'}, + {'data': [0, ], 'label': 'vnf__0.packets_dropped'}, + {'data': [617825443, ], 'label': 'vnf__0.packets_fwd'}, ] expected_output = [ @@ -168,3 +168,15 @@ class ReportTestCase(unittest.TestCase): mock_tasks.assert_called_once_with() mock_keys.assert_called_once_with() self.assertEqual(GOOD_TIMESTAMP, self.rep.Timestamp) + + @mock.patch.object(report.Report, '_get_tasks') + @mock.patch.object(report.Report, '_get_fieldkeys') + @mock.patch.object(report.Report, '_validate') + def test_generate_nsb(self, mock_valid, mock_keys, mock_tasks): + mock_tasks.return_value = GOOD_DB_TASK + mock_keys.return_value = GOOD_DB_FIELDKEYS + self.rep.generate_nsb(self.param) + mock_valid.assert_called_once_with(GOOD_YAML_NAME, GOOD_TASK_ID) + mock_tasks.assert_called_once_with() + mock_keys.assert_called_once_with() + self.assertEqual(GOOD_TIMESTAMP, self.rep.Timestamp) diff --git a/yardstick/tests/unit/benchmark/runner/test_iteration.py b/yardstick/tests/unit/benchmark/runner/test_iteration.py new file mode 100644 index 000000000..783b236f5 --- /dev/null +++ b/yardstick/tests/unit/benchmark/runner/test_iteration.py @@ -0,0 +1,45 @@ +############################################################################## +# Copyright (c) 2018 Huawei Technologies Co.,Ltd and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## + +import mock +import unittest +import multiprocessing +from yardstick.benchmark.runners import iteration +from yardstick.common import exceptions as y_exc + + +class IterationRunnerTest(unittest.TestCase): + def setUp(self): + self.scenario_cfg = { + 'runner': {'interval': 0, "duration": 0}, + 'type': 'some_type' + } + + self.benchmark = mock.Mock() + self.benchmark_cls = mock.Mock(return_value=self.benchmark) + + def _assert_defaults__worker_run_setup_and_teardown(self): + self.benchmark_cls.assert_called_once_with(self.scenario_cfg, {}) + self.benchmark.setup.assert_called_once() + + def _assert_defaults__worker_run_one_iteration(self): + self.benchmark.pre_run_wait_time.assert_called_once_with(0) + self.benchmark.my_method.assert_called_once_with({}) + + def test__worker_process_broad_exception(self): + self.benchmark.my_method = mock.Mock( + side_effect=y_exc.YardstickException) + + with self.assertRaises(Exception): + iteration._worker_process(mock.Mock(), self.benchmark_cls, 'my_method', + self.scenario_cfg, {}, + multiprocessing.Event(), mock.Mock()) + + self._assert_defaults__worker_run_one_iteration() + self._assert_defaults__worker_run_setup_and_teardown() diff --git a/yardstick/tests/unit/benchmark/scenarios/availability/test_attacker_baremetal.py b/yardstick/tests/unit/benchmark/scenarios/availability/test_attacker_baremetal.py index 0f68753fd..35455a49c 100644 --- a/yardstick/tests/unit/benchmark/scenarios/availability/test_attacker_baremetal.py +++ b/yardstick/tests/unit/benchmark/scenarios/availability/test_attacker_baremetal.py @@ -7,10 +7,6 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## -# Unittest for -# yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal - -from __future__ import absolute_import import mock import unittest @@ -18,33 +14,44 @@ from yardstick.benchmark.scenarios.availability.attacker import \ attacker_baremetal -# pylint: disable=unused-argument -# disable this for now because I keep forgetting mock patch arg ordering +class ExecuteShellTestCase(unittest.TestCase): + def setUp(self): + self._mock_subprocess = mock.patch.object(attacker_baremetal, + 'subprocess') + self.mock_subprocess = self._mock_subprocess.start() -@mock.patch('yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal.subprocess') -class ExecuteShellTestCase(unittest.TestCase): + self.addCleanup(self._stop_mocks) - def test__fun_execute_shell_command_successful(self, mock_subprocess): - cmd = "env" - mock_subprocess.check_output.return_value = (0, 'unittest') - exitcode, _ = attacker_baremetal._execute_shell_command(cmd) + def _stop_mocks(self): + self._mock_subprocess.stop() + + def test__execute_shell_command_successful(self): + self.mock_subprocess.check_output.return_value = (0, 'unittest') + exitcode, _ = attacker_baremetal._execute_shell_command("env") self.assertEqual(exitcode, 0) - @mock.patch('yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal.LOG') - def test__fun_execute_shell_command_fail_cmd_exception(self, mock_log, mock_subprocess): - cmd = "env" - mock_subprocess.check_output.side_effect = RuntimeError - exitcode, _ = attacker_baremetal._execute_shell_command(cmd) + @mock.patch.object(attacker_baremetal, 'LOG') + def test__execute_shell_command_fail_cmd_exception(self, mock_log): + self.mock_subprocess.check_output.side_effect = RuntimeError + exitcode, _ = attacker_baremetal._execute_shell_command("env") self.assertEqual(exitcode, -1) mock_log.error.assert_called_once() -@mock.patch('yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal.subprocess') -@mock.patch('yardstick.benchmark.scenarios.availability.attacker.attacker_baremetal.ssh') class AttackerBaremetalTestCase(unittest.TestCase): def setUp(self): + self._mock_ssh = mock.patch.object(attacker_baremetal, 'ssh') + self.mock_ssh = self._mock_ssh.start() + self._mock_subprocess = mock.patch.object(attacker_baremetal, + 'subprocess') + self.mock_subprocess = self._mock_subprocess.start() + self.addCleanup(self._stop_mocks) + + self.mock_ssh.SSH.from_node().execute.return_value = ( + 0, "running", '') + host = { "ipmi_ip": "10.20.0.5", "ipmi_user": "root", @@ -59,26 +66,26 @@ class AttackerBaremetalTestCase(unittest.TestCase): 'host': 'node1', } - def test__attacker_baremetal_all_successful(self, mock_ssh, mock_subprocess): - mock_ssh.SSH.from_node().execute.return_value = (0, "running", '') - ins = attacker_baremetal.BaremetalAttacker(self.attacker_cfg, - self.context) + self.ins = attacker_baremetal.BaremetalAttacker(self.attacker_cfg, + self.context) - ins.setup() - ins.inject_fault() - ins.recover() + def _stop_mocks(self): + self._mock_ssh.stop() + self._mock_subprocess.stop() - def test__attacker_baremetal_check_failuer(self, mock_ssh, mock_subprocess): - mock_ssh.SSH.from_node().execute.return_value = (0, "error check", '') - ins = attacker_baremetal.BaremetalAttacker(self.attacker_cfg, - self.context) - ins.setup() + def test__attacker_baremetal_all_successful(self): + self.ins.setup() + self.ins.inject_fault() + self.ins.recover() - def test__attacker_baremetal_recover_successful(self, mock_ssh, mock_subprocess): + def test__attacker_baremetal_check_failure(self): + self.mock_ssh.SSH.from_node().execute.return_value = ( + 0, "error check", '') + self.ins.setup() + def test__attacker_baremetal_recover_successful(self): self.attacker_cfg["jump_host"] = 'node1' self.context["node1"]["password"] = "123456" - mock_ssh.SSH.from_node().execute.return_value = (0, "running", '') ins = attacker_baremetal.BaremetalAttacker(self.attacker_cfg, self.context) diff --git a/yardstick/tests/unit/common/test_utils.py b/yardstick/tests/unit/common/test_utils.py index c0c928916..6b8d81907 100644 --- a/yardstick/tests/unit/common/test_utils.py +++ b/yardstick/tests/unit/common/test_utils.py @@ -1135,6 +1135,15 @@ class TestUtilsIpAddrMethods(ut_base.BaseUnitTestCase): for addr in addr_list: self.assertRaises(Exception, utils.make_ipv4_address, addr) + def test_get_ip_range_count(self): + iprange = "192.168.0.1-192.168.0.25" + count = utils.get_ip_range_count(iprange) + self.assertEqual(count, 24) + + def test_get_ip_range_start(self): + iprange = "192.168.0.1-192.168.0.25" + start = utils.get_ip_range_start(iprange) + self.assertEqual(start, "192.168.0.1") def test_safe_ip_address(self): addr_list = self.GOOD_IP_V4_ADDRESS_STR_LIST diff --git a/yardstick/tests/unit/network_services/libs/ixia_libs/test_ixnet_api.py b/yardstick/tests/unit/network_services/libs/ixia_libs/test_ixnet_api.py index 5e2578b1f..5b32a4297 100644 --- a/yardstick/tests/unit/network_services/libs/ixia_libs/test_ixnet_api.py +++ b/yardstick/tests/unit/network_services/libs/ixia_libs/test_ixnet_api.py @@ -351,6 +351,39 @@ class TestIxNextgen(unittest.TestCase): self.ixnet_gen.ixnet.setAttribute.assert_any_call( 'attr/singleValue', '-value', 'external') + def test_add_interface(self): + self.ixnet_gen.ixnet.add.return_value = 'obj' + self.ixnet_gen.add_interface(vport='vport', + ip='10.0.0.2', + mac='00:00:00:00:00:00', + gateway='10.0.0.1') + self.ixnet_gen.ixnet.add.assert_any_call('vport', 'interface') + self.ixnet_gen.ixnet.add.assert_any_call('obj', 'ipv4') + self.ixnet_gen.ixnet.setMultiAttribute.assert_any_call( + 'obj/ethernet', '-macAddress', '00:00:00:00:00:00') + self.ixnet_gen.ixnet.setMultiAttribute.assert_any_call( + 'obj', '-ip', '10.0.0.2') + self.ixnet_gen.ixnet.setMultiAttribute.assert_any_call( + 'obj', '-gateway', '10.0.0.1') + self.ixnet_gen.ixnet.setMultiAttribute.assert_any_call( + 'obj', '-enabled', 'true') + + def test_add_static_ipv4(self): + self.ixnet_gen.ixnet.add.return_value = 'obj' + self.ixnet_gen.add_static_ipv4(iface='iface', + vport='vport', + start_ip='10.0.0.0', + count='100', + mask='32') + self.ixnet_gen.ixnet.add.assert_called_once_with( + 'vport/protocols/static', 'ip') + self.ixnet_gen.ixnet.setMultiAttribute.assert_any_call( + 'obj', '-protocolInterface', 'iface', + '-ipStart', '10.0.0.0', + '-count', '100', + '-mask', '32', + '-enabled', 'true') + @mock.patch.object(IxNetwork, 'IxNet') def test_connect(self, mock_ixnet): mock_ixnet.return_value = self.ixnet @@ -673,7 +706,23 @@ class TestIxNextgen(unittest.TestCase): return_value='field_desc'): self.ixnet_gen._update_ipv4_priority('field_desc', priority) - self.assertEqual(self.ixnet_gen._set_priority_field.call_count, 0) + self.ixnet_gen._set_priority_field.assert_not_called() + + def test__update_ipv4_priority_not_supported_dscp_class(self): + priority = {'dscp': {'testPHB': [0, 4, 7]}} + self.ixnet_gen._set_priority_field = mock.Mock() + self.ixnet_gen._get_field_in_stack_item = mock.Mock() + self.ixnet_gen._update_ipv4_priority('field_desc', priority) + self.ixnet_gen._set_priority_field.assert_not_called() + self.ixnet_gen._get_field_in_stack_item.assert_not_called() + + def test__update_ipv4_priority_not_supported_tos_field(self): + priority = {'tos': {'test': [0, 4, 7]}} + self.ixnet_gen._set_priority_field = mock.Mock() + self.ixnet_gen._get_field_in_stack_item = mock.Mock() + self.ixnet_gen._update_ipv4_priority('field_desc', priority) + self.ixnet_gen._set_priority_field.assert_not_called() + self.ixnet_gen._get_field_in_stack_item.assert_not_called() def test__set_priority_field_list_value(self): value = [1, 4, 7] @@ -818,13 +867,13 @@ class TestIxNextgen(unittest.TestCase): @mock.patch.object(ixnet_api.IxNextgen, '_get_protocol_status') def test_is_protocols_running(self, mock_ixnextgen_get_protocol_status): - mock_ixnextgen_get_protocol_status.return_value = 'up' + mock_ixnextgen_get_protocol_status.return_value = ['up', 'up'] result = self.ixnet_gen.is_protocols_running(['ethernet', 'ipv4']) self.assertTrue(result) @mock.patch.object(ixnet_api.IxNextgen, '_get_protocol_status') def test_is_protocols_stopped(self, mock_ixnextgen_get_protocol_status): - mock_ixnextgen_get_protocol_status.return_value = 'down' + mock_ixnextgen_get_protocol_status.return_value = ['down', 'down'] result = self.ixnet_gen.is_protocols_running(['ethernet', 'ipv4']) self.assertFalse(result) diff --git a/yardstick/tests/unit/network_services/traffic_profile/test_base.py b/yardstick/tests/unit/network_services/traffic_profile/test_base.py index 0dc3e0579..d9244e31b 100644 --- a/yardstick/tests/unit/network_services/traffic_profile/test_base.py +++ b/yardstick/tests/unit/network_services/traffic_profile/test_base.py @@ -95,18 +95,18 @@ class TrafficProfileConfigTestCase(unittest.TestCase): def test__parse_rate(self): tp_config = {'traffic_profile': {'packet_sizes': {'64B': 100}}} tp_config_obj = base.TrafficProfileConfig(tp_config) - self.assertEqual((100.0, 'fps'), tp_config_obj._parse_rate('100 ')) - self.assertEqual((200.5, 'fps'), tp_config_obj._parse_rate('200.5')) - self.assertEqual((300.8, 'fps'), tp_config_obj._parse_rate('300.8fps')) + self.assertEqual((100.0, 'fps'), tp_config_obj.parse_rate('100 ')) + self.assertEqual((200.5, 'fps'), tp_config_obj.parse_rate('200.5')) + self.assertEqual((300.8, 'fps'), tp_config_obj.parse_rate('300.8fps')) self.assertEqual((400.2, 'fps'), - tp_config_obj._parse_rate('400.2 fps')) - self.assertEqual((500.3, '%'), tp_config_obj._parse_rate('500.3%')) - self.assertEqual((600.1, '%'), tp_config_obj._parse_rate('600.1 %')) + tp_config_obj.parse_rate('400.2 fps')) + self.assertEqual((500.3, '%'), tp_config_obj.parse_rate('500.3%')) + self.assertEqual((600.1, '%'), tp_config_obj.parse_rate('600.1 %')) def test__parse_rate_exception(self): tp_config = {'traffic_profile': {'packet_sizes': {'64B': 100}}} tp_config_obj = base.TrafficProfileConfig(tp_config) with self.assertRaises(exceptions.TrafficProfileRate): - tp_config_obj._parse_rate('100Fps') + tp_config_obj.parse_rate('100Fps') with self.assertRaises(exceptions.TrafficProfileRate): - tp_config_obj._parse_rate('100 kbps') + tp_config_obj.parse_rate('100 kbps') diff --git a/yardstick/tests/unit/network_services/traffic_profile/test_ixia_rfc2544.py b/yardstick/tests/unit/network_services/traffic_profile/test_ixia_rfc2544.py index 5b39b6cd1..ef16676c7 100644 --- a/yardstick/tests/unit/network_services/traffic_profile/test_ixia_rfc2544.py +++ b/yardstick/tests/unit/network_services/traffic_profile/test_ixia_rfc2544.py @@ -16,6 +16,7 @@ import copy import mock import unittest +import collections from yardstick.network_services.traffic_profile import ixia_rfc2544 from yardstick.network_services.traffic_profile import trex_traffic_profile @@ -511,9 +512,7 @@ class TestIXIARFC2544Profile(unittest.TestCase): with mock.patch.object(rfc2544_profile, '_get_ixia_traffic_profile') \ as mock_get_tp, \ mock.patch.object(rfc2544_profile, '_ixia_traffic_generate') \ - as mock_tgenerate, \ - mock.patch.object(rfc2544_profile, 'update_traffic_profile') \ - as mock_update_tp: + as mock_tgenerate: mock_get_tp.return_value = 'fake_tprofile' output = rfc2544_profile.execute_traffic(mock.ANY, ixia_obj=mock.ANY) @@ -524,7 +523,6 @@ class TestIXIARFC2544Profile(unittest.TestCase): self.assertEqual(0, rfc2544_profile.min_rate) mock_get_tp.assert_called_once() mock_tgenerate.assert_called_once() - mock_update_tp.assert_called_once() def test_execute_traffic_not_first_run(self): rfc2544_profile = ixia_rfc2544.IXIARFC2544Profile(self.TRAFFIC_PROFILE) @@ -683,3 +681,37 @@ class TestIXIARFC2544Profile(unittest.TestCase): self.assertEqual(66.833, samples['RxThroughput']) self.assertEqual(0.099651, samples['DropPercentage']) self.assertEqual(33.45, rfc2544_profile.rate) + + +class TestIXIARFC2544PppoeScenarioProfile(unittest.TestCase): + + TRAFFIC_PROFILE = { + "schema": "nsb:traffic_profile:0.1", + "name": "fixed", + "description": "Fixed traffic profile to run UDP traffic", + "traffic_profile": { + "traffic_type": "FixedTraffic", + "frame_rate": 100}, + 'uplink_0': {'ipv4': {'port': 'xe0', 'id': 1}}, + 'downlink_0': {'ipv4': {'port': 'xe2', 'id': 2}}, + 'uplink_1': {'ipv4': {'port': 'xe1', 'id': 3}}, + 'downlink_1': {'ipv4': {'port': 'xe2', 'id': 4}} + } + + def setUp(self): + self.ixia_tp = ixia_rfc2544.IXIARFC2544PppoeScenarioProfile( + self.TRAFFIC_PROFILE) + + def test___init__(self): + self.assertIsInstance(self.ixia_tp.full_profile, + collections.OrderedDict) + + def test__get_flow_groups_params(self): + expected_tp = collections.OrderedDict([ + ('uplink_0', {'ipv4': {'id': 1, 'port': 'xe0'}}), + ('downlink_0', {'ipv4': {'id': 2, 'port': 'xe2'}}), + ('uplink_1', {'ipv4': {'id': 3, 'port': 'xe1'}}), + ('downlink_1', {'ipv4': {'id': 4, 'port': 'xe2'}})]) + + self.ixia_tp._get_flow_groups_params() + self.assertDictEqual(self.ixia_tp.full_profile, expected_tp) diff --git a/yardstick/tests/unit/network_services/traffic_profile/test_prox_irq.py b/yardstick/tests/unit/network_services/traffic_profile/test_prox_irq.py new file mode 100644 index 000000000..59f37befa --- /dev/null +++ b/yardstick/tests/unit/network_services/traffic_profile/test_prox_irq.py @@ -0,0 +1,55 @@ +# Copyright (c) 2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import unittest +import mock + +from yardstick.network_services.traffic_profile import prox_irq + + +class TestProxIrqProfile(unittest.TestCase): + + def setUp(self): + self._mock_log_info = mock.patch.object(prox_irq.LOG, 'info') + self.mock_log_info = self._mock_log_info.start() + self.addCleanup(self._stop_mocks) + + def _stop_mocks(self): + self._mock_log_info.stop() + + def test_execute_1(self): + tp_config = { + 'traffic_profile': { + }, + } + + traffic_generator = mock.MagicMock() + attrs1 = {'get.return_value' : 10} + traffic_generator.scenario_helper.all_options.configure_mock(**attrs1) + + attrs2 = {'__getitem__.return_value' : 10, 'get.return_value': 10} + traffic_generator.scenario_helper.scenario_cfg["runner"].configure_mock(**attrs2) + + profile_helper = mock.MagicMock() + + profile = prox_irq.ProxIrqProfile(tp_config) + profile.init(mock.MagicMock()) + profile._profile_helper = profile_helper + + profile.execute_traffic(traffic_generator) + profile.run_test() + is_ended_flag = profile.is_ended() + + self.assertFalse(is_ended_flag) + self.assertEqual(profile.lower_bound, 10.0) diff --git a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_prox_helpers.py b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_prox_helpers.py index 6d1d8c6a1..9a30fb9e9 100644 --- a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_prox_helpers.py +++ b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_prox_helpers.py @@ -590,6 +590,27 @@ class TestProxSocketHelper(unittest.TestCase): self.assertEqual(result, expected) @mock.patch.object(prox_helpers.LOG, 'error') + def test_irq_core_stats(self, *args): + mock_socket = mock.MagicMock() + prox = prox_helpers.ProxSocketHelper(mock_socket) + prox.get_data = mock.MagicMock(return_value=('0,1,2,3,4,5,0,1,2,3,4,5,0,1,2,3')) + + data_0 = {"cpu": 0, 'bucket_0': 1, 'bucket_1': 2, 'bucket_2': 3, 'bucket_3': 4, + 'bucket_4': 5, 'bucket_5': 0, 'bucket_6': 1, 'bucket_7': 2, 'bucket_8': 3, + 'bucket_9': 4, 'bucket_10': 5, 'bucket_11': 0, 'bucket_12': 1, + "max_irq": 0, "overflow": 10} + + data_1 = {"cpu": 1, 'bucket_0': 1, 'bucket_1': 2, 'bucket_2': 3, 'bucket_3': 4, + 'bucket_4': 5, 'bucket_5': 0, 'bucket_6': 1, 'bucket_7': 2, 'bucket_8': 3, + 'bucket_9': 4, 'bucket_10': 5, 'bucket_11': 0, 'bucket_12': 1, + "max_irq": 0, "overflow": 10} + + expected = {"core_0": data_0, "core_1": data_1} + + result = prox.irq_core_stats([[0, 1], [1, 0]]) + self.assertDictEqual(result, expected) + + @mock.patch.object(prox_helpers.LOG, 'error') def test_multi_port_stats(self, *args): mock_socket = mock.MagicMock() prox = prox_helpers.ProxSocketHelper(mock_socket) @@ -1353,6 +1374,36 @@ class TestProxDpdkVnfSetupEnvHelper(unittest.TestCase): ['missing_addtional_file', 'dofile("nosuch")'], ], ], + [ + 'core 0', + [ + ['name', 'p0'] + ] + ], + [ + 'core 1-4', + [ + ['name', 'p1'] + ] + ], + [ + 'core 5,6', + [ + ['name', 'p2'] + ] + ], + [ + 'core xx', + [ + ['name', 'p3'] + ] + ], + [ + 'core $x', + [ + ['name', 'p4'] + ] + ] ] expected = [ @@ -1382,6 +1433,54 @@ class TestProxDpdkVnfSetupEnvHelper(unittest.TestCase): ['missing_addtional_file', 'dofile("nosuch")'], ], ], + [ + 'core 0', + [ + ['name', 'p0'] + ] + ], + [ + 'core 1', + [ + ['name', 'p1'] + ] + ], + [ + 'core 2', + [ + ['name', 'p1'] + ] + ], + [ + 'core 3', + [ + ['name', 'p1'] + ] + ], + [ + 'core 4', + [ + ['name', 'p1'] + ] + ], + [ + 'core 5', + [ + ['name', 'p2'] + ] + ], + [ + 'core 6', + [ + ['name', 'p2'] + ] + ], + [ + 'core $x', + [ + ['name', 'p4'] + ] + ] ] result = helper.generate_prox_config_file('/c/d/e') self.assertEqual(result, expected, str(result)) @@ -2708,3 +2807,15 @@ class TestProxlwAFTRProfileHelper(unittest.TestCase): # negative pkt_size is the only way to make ratio > 1 helper.run_test(pkt_size=-1000, duration=5, value=6.5, tolerated_loss=0.0, line_speed=constants.NIC_GBPS_DEFAULT * constants.ONE_GIGABIT_IN_BITS) + + +class TestProxIrqProfileHelper(unittest.TestCase): + + def test_run_test(self, *args): + resource_helper = mock.MagicMock() + helper = prox_helpers.ProxIrqProfileHelper(resource_helper) + self.assertIsNone(helper._cores_tuple) + self.assertIsNone(helper._ports_tuple) + self.assertIsNone(helper._latency_cores) + self.assertIsNone(helper._test_cores) + self.assertIsNone(helper._cpu_topology) diff --git a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_prox_irq.py b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_prox_irq.py new file mode 100644 index 000000000..4eaa38c27 --- /dev/null +++ b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_prox_irq.py @@ -0,0 +1,828 @@ +# Copyright (c) 2017-2018 Intel Corporation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import unittest +import mock +import errno + +from yardstick.tests import STL_MOCKS +from yardstick.common import exceptions as y_exceptions +from yardstick.network_services.vnf_generic.vnf.prox_irq import ProxIrqGen +from yardstick.network_services.vnf_generic.vnf.prox_irq import ProxIrqVNF +from yardstick.benchmark.contexts import base as ctx_base + +SSH_HELPER = 'yardstick.network_services.vnf_generic.vnf.sample_vnf.VnfSshHelper' + +STLClient = mock.MagicMock() +stl_patch = mock.patch.dict("sys.modules", STL_MOCKS) +stl_patch.start() + +if stl_patch: + from yardstick.network_services.vnf_generic.vnf import prox_vnf + from yardstick.tests.unit.network_services.vnf_generic.vnf.test_base import mock_ssh + +VNF_NAME = "vnf__1" + +class TestProxIrqVNF(unittest.TestCase): + + SCENARIO_CFG = { + 'task_path': "", + 'nodes': { + 'tg__1': 'trafficgen_1.yardstick', + 'vnf__1': 'vnf.yardstick'}, + 'runner': { + 'duration': 600, 'type': 'Duration'}, + 'topology': 'prox-tg-topology-2.yaml', + 'traffic_profile': '../../traffic_profiles/prox_binsearch.yaml', + 'type': 'NSPerf', + 'options': { + 'tg__1': {'prox_args': {'-e': '', + '-t': ''}, + 'prox_config': 'configs/l3-gen-2.cfg', + 'prox_path': + '/root/dppd-PROX-v035/build/prox'}, + 'vnf__1': { + 'prox_args': {'-t': ''}, + 'prox_config': 'configs/l3-swap-2.cfg', + 'prox_path': '/root/dppd-PROX-v035/build/prox'}}} + + VNFD_0 = { + 'short-name': 'VpeVnf', + 'vdu': [ + { + 'routing_table': [ + { + 'network': '152.16.100.20', + 'netmask': '255.255.255.0', + 'gateway': '152.16.100.20', + 'if': 'xe0' + }, + { + 'network': '152.16.40.20', + 'netmask': '255.255.255.0', + 'gateway': '152.16.40.20', + 'if': 'xe1' + }, + ], + 'description': 'VPE approximation using DPDK', + 'name': 'vpevnf-baremetal', + 'nd_route_tbl': [ + { + 'network': '0064:ff9b:0:0:0:0:9810:6414', + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:6414', + 'if': 'xe0' + }, + { + 'network': '0064:ff9b:0:0:0:0:9810:2814', + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:2814', + 'if': 'xe1' + }, + ], + 'id': 'vpevnf-baremetal', + 'external-interface': [ + { + 'virtual-interface': { + 'dst_mac': '00:00:00:00:00:03', + 'vpci': '0000:05:00.0', + 'local_ip': '152.16.100.19', + 'type': 'PCI-PASSTHROUGH', + 'netmask': '255.255.255.0', + 'dpdk_port_num': 0, + 'bandwidth': '10 Gbps', + 'dst_ip': '152.16.100.20', + 'local_mac': '00:00:00:00:00:01' + }, + 'vnfd-connection-point-ref': 'xe0', + 'name': 'xe0' + }, + { + 'virtual-interface': { + 'dst_mac': '00:00:00:00:00:04', + 'vpci': '0000:05:00.1', + 'local_ip': '152.16.40.19', + 'type': 'PCI-PASSTHROUGH', + 'netmask': '255.255.255.0', + 'dpdk_port_num': 1, + 'bandwidth': '10 Gbps', + 'dst_ip': '152.16.40.20', + 'local_mac': '00:00:00:00:00:02' + }, + 'vnfd-connection-point-ref': 'xe1', + 'name': 'xe1' + }, + ], + }, + ], + 'description': 'Vpe approximation using DPDK', + 'mgmt-interface': { + 'vdu-id': 'vpevnf-baremetal', + 'host': '1.1.1.1', + 'password': 'r00t', + 'user': 'root', + 'ip': '1.1.1.1' + }, + 'benchmark': { + 'kpi': [ + 'packets_in', + 'packets_fwd', + 'packets_dropped', + ], + }, + 'connection-point': [ + { + 'type': 'VPORT', + 'name': 'xe0', + }, + { + 'type': 'VPORT', + 'name': 'xe1', + }, + ], + 'id': 'VpeApproxVnf', 'name': 'VPEVnfSsh' + } + + VNFD = { + 'vnfd:vnfd-catalog': { + 'vnfd': [ + VNFD_0, + ] + } + } + + TRAFFIC_PROFILE = { + "schema": "isb:traffic_profile:0.1", + "name": "fixed", + "description": "Fixed traffic profile to run UDP traffic", + "traffic_profile": { + "traffic_type": "FixedTraffic", + "frame_rate": 100, # pps + "flow_number": 10, + "frame_size": 64, + }, + } + + CONTEXT_CFG = { + 'nodes': { + 'tg__2': { + 'member-vnf-index': '3', + 'role': 'TrafficGen', + 'name': 'trafficgen_2.yardstick', + 'vnfd-id-ref': 'tg__2', + 'ip': '1.2.1.1', + 'interfaces': { + 'xe0': { + 'local_iface_name': 'ens513f0', + 'vld_id': prox_vnf.ProxApproxVnf.DOWNLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.40.20', + 'dst_mac': '00:00:00:00:00:01', + 'local_mac': '00:00:00:00:00:03', + 'dst_ip': '152.16.40.19', + 'driver': 'ixgbe', + 'vpci': '0000:02:00.0', + 'dpdk_port_num': 0, + }, + 'xe1': { + 'local_iface_name': 'ens513f1', + 'netmask': '255.255.255.0', + 'network': '202.16.100.0', + 'local_ip': '202.16.100.20', + 'local_mac': '00:1e:67:d0:60:5d', + 'driver': 'ixgbe', + 'vpci': '0000:02:00.1', + 'dpdk_port_num': 1, + }, + }, + 'password': 'r00t', + 'VNF model': 'l3fwd_vnf.yaml', + 'user': 'root', + }, + 'tg__1': { + 'member-vnf-index': '1', + 'role': 'TrafficGen', + 'name': 'trafficgen_1.yardstick', + 'vnfd-id-ref': 'tg__1', + 'ip': '1.2.1.1', + 'interfaces': { + 'xe0': { + 'local_iface_name': 'ens785f0', + 'vld_id': prox_vnf.ProxApproxVnf.UPLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.100.20', + 'dst_mac': '00:00:00:00:00:02', + 'local_mac': '00:00:00:00:00:04', + 'dst_ip': '152.16.100.19', + 'driver': 'i40e', + 'vpci': '0000:05:00.0', + 'dpdk_port_num': 0, + }, + 'xe1': { + 'local_iface_name': 'ens785f1', + 'netmask': '255.255.255.0', + 'local_ip': '152.16.100.21', + 'local_mac': '00:00:00:00:00:01', + 'driver': 'i40e', + 'vpci': '0000:05:00.1', + 'dpdk_port_num': 1, + }, + }, + 'password': 'r00t', + 'VNF model': 'tg_rfc2544_tpl.yaml', + 'user': 'root', + }, + 'vnf__1': { + 'name': 'vnf.yardstick', + 'vnfd-id-ref': 'vnf__1', + 'ip': '1.2.1.1', + 'interfaces': { + 'xe0': { + 'local_iface_name': 'ens786f0', + 'vld_id': prox_vnf.ProxApproxVnf.UPLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.100.19', + 'dst_mac': '00:00:00:00:00:04', + 'local_mac': '00:00:00:00:00:02', + 'dst_ip': '152.16.100.20', + 'driver': 'i40e', + 'vpci': '0000:05:00.0', + 'dpdk_port_num': 0, + }, + 'xe1': { + 'local_iface_name': 'ens786f1', + 'vld_id': prox_vnf.ProxApproxVnf.DOWNLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.40.19', + 'dst_mac': '00:00:00:00:00:03', + 'local_mac': '00:00:00:00:00:01', + 'dst_ip': '152.16.40.20', + 'driver': 'i40e', + 'vpci': '0000:05:00.1', + 'dpdk_port_num': 1, + }, + }, + 'routing_table': [ + { + 'netmask': '255.255.255.0', + 'gateway': '152.16.100.20', + 'network': '152.16.100.20', + 'if': 'xe0', + }, + { + 'netmask': '255.255.255.0', + 'gateway': '152.16.40.20', + 'network': '152.16.40.20', + 'if': 'xe1', + }, + ], + 'member-vnf-index': '2', + 'host': '1.2.1.1', + 'role': 'vnf', + 'user': 'root', + 'nd_route_tbl': [ + { + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:6414', + 'network': '0064:ff9b:0:0:0:0:9810:6414', + 'if': 'xe0', + }, + { + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:2814', + 'network': '0064:ff9b:0:0:0:0:9810:2814', + 'if': 'xe1', + }, + ], + 'password': 'r00t', + 'VNF model': 'prox_vnf.yaml', + }, + }, + } + + def test___init__(self): + prox_irq_vnf = ProxIrqVNF('vnf1', self.VNFD_0, 'task_id') + + self.assertEqual(prox_irq_vnf.name, 'vnf1') + self.assertDictEqual(prox_irq_vnf.vnfd_helper, self.VNFD_0) + + @mock.patch.object(ctx_base.Context, 'get_physical_node_from_server', return_value='mock_node') + @mock.patch(SSH_HELPER) + def test_collect_kpi(self, ssh, *args): + mock_ssh(ssh) + + vnfd = self.VNFD['vnfd:vnfd-catalog']['vnfd'][0] + resource_helper = mock.MagicMock() + + resource_helper = mock.MagicMock() + + core_1 = {'bucket_1': 1, 'bucket_2': 2, 'bucket_3': 3, 'bucket_4': 4, 'bucket_5': 5, + 'bucket_6': 6, 'bucket_7': 7, 'bucket_8': 8, 'bucket_9': 9, 'bucket_10': 10, + 'bucket_11': 11, 'bucket_12': 12, 'bucket_0': 100, 'cpu': 1, 'max_irq': 12, + 'overflow': 10} + core_2 = {'bucket_1': 1, 'bucket_2': 2, 'bucket_3': 3, 'bucket_4': 4, 'bucket_5': 5, + 'bucket_6': 0, 'bucket_7': 0, 'bucket_8': 0, 'bucket_9': 0, 'bucket_10': 0, + 'bucket_11': 0, 'bucket_12': 0, 'bucket_0': 100, 'cpu': 2, 'max_irq': 12, + 'overflow': 10} + + irq_data = {'core_1': core_1, 'core_2': core_2} + resource_helper.execute.return_value = (irq_data) + + build_config_file = mock.MagicMock() + build_config_file.return_value = None + + prox_irq_vnf = ProxIrqVNF(VNF_NAME, vnfd, 'task_id') + + startup = ["global", [["eal", "-4"]]] + master_0 = ["core 0", [["mode", "master"]]] + core_1 = ["core 1", [["mode", "irq"]]] + core_2 = ["core 2", [["mode", "irq"], ["task", "2"]]] + + prox_irq_vnf.setup_helper._prox_config_data = \ + [startup, master_0, core_1, core_2] + + prox_irq_vnf.scenario_helper.scenario_cfg = self.SCENARIO_CFG + prox_irq_vnf.resource_helper = resource_helper + prox_irq_vnf.setup_helper.build_config_file = build_config_file + + result = prox_irq_vnf.collect_kpi() + self.assertDictEqual(result["collect_stats"], {}) + + result = prox_irq_vnf.collect_kpi() + self.assertFalse('bucket_10' in result["collect_stats"]['core_2']) + self.assertFalse('bucket_11' in result["collect_stats"]['core_2']) + self.assertFalse('bucket_12' in result["collect_stats"]['core_2']) + self.assertEqual(result["collect_stats"]['core_2']['max_irq'], 12) + + + @mock.patch(SSH_HELPER) + def test_vnf_execute_oserror(self, ssh, *args): + mock_ssh(ssh) + + vnfd = self.VNFD['vnfd:vnfd-catalog']['vnfd'][0] + prox_irq_vnf = ProxIrqVNF(VNF_NAME, vnfd, 'task_id') + prox_irq_vnf.resource_helper = resource_helper = mock.Mock() + + resource_helper.execute.side_effect = OSError(errno.EPIPE, "") + prox_irq_vnf.vnf_execute("", _ignore_errors=True) + + resource_helper.execute.side_effect = OSError(errno.ESHUTDOWN, "") + prox_irq_vnf.vnf_execute("", _ignore_errors=True) + + resource_helper.execute.side_effect = OSError(errno.EADDRINUSE, "") + with self.assertRaises(OSError): + prox_irq_vnf.vnf_execute("", _ignore_errors=True) + + @mock.patch('yardstick.network_services.vnf_generic.vnf.prox_helpers.socket') + @mock.patch(SSH_HELPER) + def test_terminate(self, ssh, *args): + mock_ssh(ssh) + vnfd = self.VNFD['vnfd:vnfd-catalog']['vnfd'][0] + + mock_ssh(ssh, exec_result=(1, "", "")) + prox_irq_vnf = ProxIrqVNF(VNF_NAME, vnfd, 'task_id') + + prox_irq_vnf._terminated = mock.MagicMock() + prox_irq_vnf._traffic_process = mock.MagicMock() + prox_irq_vnf._traffic_process.terminate = mock.Mock() + prox_irq_vnf.ssh_helper = mock.MagicMock() + prox_irq_vnf.setup_helper = mock.MagicMock() + prox_irq_vnf.resource_helper = mock.MagicMock() + prox_irq_vnf._vnf_wrapper.setup_helper = mock.MagicMock() + prox_irq_vnf._vnf_wrapper._vnf_process = mock.MagicMock(**{"is_alive.return_value": False}) + prox_irq_vnf._vnf_wrapper.resource_helper = mock.MagicMock() + + prox_irq_vnf._run_prox = mock.Mock(return_value=0) + prox_irq_vnf.q_in = mock.Mock() + prox_irq_vnf.q_out = mock.Mock() + + self.assertIsNone(prox_irq_vnf.terminate()) + + @mock.patch(SSH_HELPER) + def test_wait_for_instantiate_panic(self, ssh, *args): + vnfd = self.VNFD['vnfd:vnfd-catalog']['vnfd'][0] + + mock_ssh(ssh, exec_result=(1, "", "")) + prox_irq_vnf = ProxIrqVNF(VNF_NAME, vnfd, 'task_id') + + prox_irq_vnf._terminated = mock.MagicMock() + prox_irq_vnf._traffic_process = mock.MagicMock() + prox_irq_vnf._traffic_process.terminate = mock.Mock() + prox_irq_vnf.ssh_helper = mock.MagicMock() + prox_irq_vnf.setup_helper = mock.MagicMock() + prox_irq_vnf.resource_helper = mock.MagicMock() + prox_irq_vnf._vnf_wrapper.setup_helper = mock.MagicMock() + prox_irq_vnf._vnf_wrapper._vnf_process = mock.MagicMock(**{"is_alive.return_value": False}) + prox_irq_vnf._vnf_wrapper.resource_helper = mock.MagicMock() + + prox_irq_vnf._run_prox = mock.Mock(return_value=0) + prox_irq_vnf.q_in = mock.Mock() + prox_irq_vnf.q_out = mock.Mock() + prox_irq_vnf.WAIT_TIME = 0 + with self.assertRaises(RuntimeError): + prox_irq_vnf.wait_for_instantiate() + +class TestProxIrqGen(unittest.TestCase): + + SCENARIO_CFG = { + 'task_path': "", + 'nodes': { + 'tg__1': 'trafficgen_1.yardstick', + 'vnf__1': 'vnf.yardstick'}, + 'runner': { + 'duration': 600, 'type': 'Duration'}, + 'topology': 'prox-tg-topology-2.yaml', + 'traffic_profile': '../../traffic_profiles/prox_binsearch.yaml', + 'type': 'NSPerf', + 'options': { + 'tg__1': {'prox_args': {'-e': '', + '-t': ''}, + 'prox_config': 'configs/l3-gen-2.cfg', + 'prox_path': + '/root/dppd-PROX-v035/build/prox'}, + 'vnf__1': { + 'prox_args': {'-t': ''}, + 'prox_config': 'configs/l3-swap-2.cfg', + 'prox_path': '/root/dppd-PROX-v035/build/prox'}}} + + VNFD_0 = { + 'short-name': 'VpeVnf', + 'vdu': [ + { + 'routing_table': [ + { + 'network': '152.16.100.20', + 'netmask': '255.255.255.0', + 'gateway': '152.16.100.20', + 'if': 'xe0' + }, + { + 'network': '152.16.40.20', + 'netmask': '255.255.255.0', + 'gateway': '152.16.40.20', + 'if': 'xe1' + }, + ], + 'description': 'VPE approximation using DPDK', + 'name': 'vpevnf-baremetal', + 'nd_route_tbl': [ + { + 'network': '0064:ff9b:0:0:0:0:9810:6414', + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:6414', + 'if': 'xe0' + }, + { + 'network': '0064:ff9b:0:0:0:0:9810:2814', + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:2814', + 'if': 'xe1' + }, + ], + 'id': 'vpevnf-baremetal', + 'external-interface': [ + { + 'virtual-interface': { + 'dst_mac': '00:00:00:00:00:03', + 'vpci': '0000:05:00.0', + 'driver': 'i40e', + 'local_ip': '152.16.100.19', + 'type': 'PCI-PASSTHROUGH', + 'netmask': '255.255.255.0', + 'dpdk_port_num': 0, + 'bandwidth': '10 Gbps', + 'dst_ip': '152.16.100.20', + 'local_mac': '00:00:00:00:00:01' + }, + 'vnfd-connection-point-ref': 'xe0', + 'name': 'xe0' + }, + { + 'virtual-interface': { + 'dst_mac': '00:00:00:00:00:04', + 'vpci': '0000:05:00.1', + 'driver': 'ixgbe', + 'local_ip': '152.16.40.19', + 'type': 'PCI-PASSTHROUGH', + 'netmask': '255.255.255.0', + 'dpdk_port_num': 1, + 'bandwidth': '10 Gbps', + 'dst_ip': '152.16.40.20', + 'local_mac': '00:00:00:00:00:02' + }, + 'vnfd-connection-point-ref': 'xe1', + 'name': 'xe1' + }, + ], + }, + ], + 'description': 'Vpe approximation using DPDK', + 'mgmt-interface': { + 'vdu-id': 'vpevnf-baremetal', + 'host': '1.1.1.1', + 'password': 'r00t', + 'user': 'root', + 'ip': '1.1.1.1' + }, + 'benchmark': { + 'kpi': [ + 'packets_in', + 'packets_fwd', + 'packets_dropped', + ], + }, + 'connection-point': [ + { + 'type': 'VPORT', + 'name': 'xe0', + }, + { + 'type': 'VPORT', + 'name': 'xe1', + }, + ], + 'id': 'VpeApproxVnf', 'name': 'VPEVnfSsh' + } + + VNFD = { + 'vnfd:vnfd-catalog': { + 'vnfd': [ + VNFD_0, + ], + }, + } + + TRAFFIC_PROFILE = { + "schema": "isb:traffic_profile:0.1", + "name": "fixed", + "description": "Fixed traffic profile to run UDP traffic", + "traffic_profile": { + "traffic_type": "FixedTraffic", + "frame_rate": 100, # pps + "flow_number": 10, + "frame_size": 64, + }, + } + + CONTEXT_CFG = { + 'nodes': { + 'tg__2': { + 'member-vnf-index': '3', + 'role': 'TrafficGen', + 'name': 'trafficgen_2.yardstick', + 'vnfd-id-ref': 'tg__2', + 'ip': '1.2.1.1', + 'interfaces': { + 'xe0': { + 'local_iface_name': 'ens513f0', + 'vld_id': prox_vnf.ProxApproxVnf.DOWNLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.40.20', + 'dst_mac': '00:00:00:00:00:01', + 'local_mac': '00:00:00:00:00:03', + 'dst_ip': '152.16.40.19', + 'driver': 'ixgbe', + 'vpci': '0000:02:00.0', + 'dpdk_port_num': 0, + }, + 'xe1': { + 'local_iface_name': 'ens513f1', + 'netmask': '255.255.255.0', + 'network': '202.16.100.0', + 'local_ip': '202.16.100.20', + 'local_mac': '00:1e:67:d0:60:5d', + 'driver': 'ixgbe', + 'vpci': '0000:02:00.1', + 'dpdk_port_num': 1, + }, + }, + 'password': 'r00t', + 'VNF model': 'l3fwd_vnf.yaml', + 'user': 'root', + }, + 'tg__1': { + 'member-vnf-index': '1', + 'role': 'TrafficGen', + 'name': 'trafficgen_1.yardstick', + 'vnfd-id-ref': 'tg__1', + 'ip': '1.2.1.1', + 'interfaces': { + 'xe0': { + 'local_iface_name': 'ens785f0', + 'vld_id': prox_vnf.ProxApproxVnf.UPLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.100.20', + 'dst_mac': '00:00:00:00:00:02', + 'local_mac': '00:00:00:00:00:04', + 'dst_ip': '152.16.100.19', + 'driver': 'i40e', + 'vpci': '0000:05:00.0', + 'dpdk_port_num': 0, + }, + 'xe1': { + 'local_iface_name': 'ens785f1', + 'netmask': '255.255.255.0', + 'local_ip': '152.16.100.21', + 'local_mac': '00:00:00:00:00:01', + 'driver': 'i40e', + 'vpci': '0000:05:00.1', + 'dpdk_port_num': 1, + }, + }, + 'password': 'r00t', + 'VNF model': 'tg_rfc2544_tpl.yaml', + 'user': 'root', + }, + 'vnf__1': { + 'name': 'vnf.yardstick', + 'vnfd-id-ref': 'vnf__1', + 'ip': '1.2.1.1', + 'interfaces': { + 'xe0': { + 'local_iface_name': 'ens786f0', + 'vld_id': prox_vnf.ProxApproxVnf.UPLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.100.19', + 'dst_mac': '00:00:00:00:00:04', + 'local_mac': '00:00:00:00:00:02', + 'dst_ip': '152.16.100.20', + 'driver': 'i40e', + 'vpci': '0000:05:00.0', + 'dpdk_port_num': 0, + }, + 'xe1': { + 'local_iface_name': 'ens786f1', + 'vld_id': prox_vnf.ProxApproxVnf.DOWNLINK, + 'netmask': '255.255.255.0', + 'local_ip': '152.16.40.19', + 'dst_mac': '00:00:00:00:00:03', + 'local_mac': '00:00:00:00:00:01', + 'dst_ip': '152.16.40.20', + 'driver': 'i40e', + 'vpci': '0000:05:00.1', + 'dpdk_port_num': 1, + }, + }, + 'routing_table': [ + { + 'netmask': '255.255.255.0', + 'gateway': '152.16.100.20', + 'network': '152.16.100.20', + 'if': 'xe0', + }, + { + 'netmask': '255.255.255.0', + 'gateway': '152.16.40.20', + 'network': '152.16.40.20', + 'if': 'xe1', + }, + ], + 'member-vnf-index': '2', + 'host': '1.2.1.1', + 'role': 'vnf', + 'user': 'root', + 'nd_route_tbl': [ + { + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:6414', + 'network': '0064:ff9b:0:0:0:0:9810:6414', + 'if': 'xe0', + }, + { + 'netmask': '112', + 'gateway': '0064:ff9b:0:0:0:0:9810:2814', + 'network': '0064:ff9b:0:0:0:0:9810:2814', + 'if': 'xe1', + }, + ], + 'password': 'r00t', + 'VNF model': 'prox_vnf.yaml', + }, + }, + } + + + def test__check_status(self): + prox_irq_gen = ProxIrqGen('tg1', self.VNFD_0, 'task_id') + + with self.assertRaises(NotImplementedError): + prox_irq_gen._check_status() + + def test_listen_traffic(self): + prox_irq_gen = ProxIrqGen('tg1', self.VNFD_0, 'task_id') + + prox_irq_gen.listen_traffic(mock.Mock()) + + def test_verify_traffic(self): + prox_irq_gen = ProxIrqGen('tg1', self.VNFD_0, 'task_id') + + prox_irq_gen.verify_traffic(mock.Mock()) + + mock.patch('yardstick.network_services.vnf_generic.vnf.prox_helpers.socket') + @mock.patch(SSH_HELPER) + def test_terminate(self, ssh, *args): + mock_ssh(ssh) + vnfd = self.VNFD['vnfd:vnfd-catalog']['vnfd'][0] + prox_traffic_gen = ProxIrqGen(VNF_NAME, vnfd, 'task_id') + prox_traffic_gen._terminated = mock.MagicMock() + prox_traffic_gen._traffic_process = mock.MagicMock() + prox_traffic_gen._traffic_process.terminate = mock.Mock() + prox_traffic_gen.ssh_helper = mock.MagicMock() + prox_traffic_gen.setup_helper = mock.MagicMock() + prox_traffic_gen.resource_helper = mock.MagicMock() + prox_traffic_gen._vnf_wrapper.setup_helper = mock.MagicMock() + prox_traffic_gen._vnf_wrapper._vnf_process = mock.MagicMock() + prox_traffic_gen._vnf_wrapper.resource_helper = mock.MagicMock() + self.assertIsNone(prox_traffic_gen.terminate()) + + def test__wait_for_process(self): + prox_irq_gen = ProxIrqGen('tg1', self.VNFD_0, 'task_id') + with mock.patch.object(prox_irq_gen, '_check_status', + return_value=0) as mock_status, \ + mock.patch.object(prox_irq_gen, '_tg_process') as mock_proc: + mock_proc.is_alive.return_value = True + mock_proc.exitcode = 234 + self.assertEqual(prox_irq_gen._wait_for_process(), 234) + mock_proc.is_alive.assert_called_once() + mock_status.assert_called_once() + + def test__wait_for_process_not_alive(self): + prox_irq_gen = ProxIrqGen('tg1', self.VNFD_0, 'task_id') + with mock.patch.object(prox_irq_gen, '_tg_process') as mock_proc: + mock_proc.is_alive.return_value = False + self.assertRaises(RuntimeError, prox_irq_gen._wait_for_process) + mock_proc.is_alive.assert_called_once() + + def test__wait_for_process_delayed(self): + prox_irq_gen = ProxIrqGen('tg1', self.VNFD_0, 'task_id') + with mock.patch.object(prox_irq_gen, '_check_status', + side_effect=[1, 0]) as mock_status, \ + mock.patch.object(prox_irq_gen, + '_tg_process') as mock_proc: + mock_proc.is_alive.return_value = True + mock_proc.exitcode = 234 + self.assertEqual(prox_irq_gen._wait_for_process(), 234) + mock_proc.is_alive.assert_has_calls([mock.call(), mock.call()]) + mock_status.assert_has_calls([mock.call(), mock.call()]) + + def test_scale(self): + prox_irq_gen = ProxIrqGen('tg1', self.VNFD_0, 'task_id') + self.assertRaises(y_exceptions.FunctionNotImplemented, + prox_irq_gen.scale) + + @mock.patch.object(ctx_base.Context, 'get_physical_node_from_server', return_value='mock_node') + @mock.patch(SSH_HELPER) + def test_collect_kpi(self, ssh, *args): + mock_ssh(ssh) + + vnfd = self.VNFD['vnfd:vnfd-catalog']['vnfd'][0] + resource_helper = mock.MagicMock() + + core_1 = {'bucket_1': 1, 'bucket_2': 2, 'bucket_3': 3, 'bucket_4': 4, 'bucket_5': 5, + 'bucket_6': 6, 'bucket_7': 7, 'bucket_8': 8, 'bucket_9': 9, 'bucket_10': 10, + 'bucket_11': 11, 'bucket_12': 12, 'bucket_0': 100, 'cpu': 1, 'max_irq': 12, + 'overflow': 10} + core_2 = {'bucket_1': 1, 'bucket_2': 2, 'bucket_3': 3, 'bucket_4': 4, 'bucket_5': 5, + 'bucket_6': 0, 'bucket_7': 0, 'bucket_8': 0, 'bucket_9': 0, 'bucket_10': 0, + 'bucket_11': 0, 'bucket_12': 0, 'bucket_0': 100, 'cpu': 2, 'max_irq': 12, + 'overflow': 10} + + irq_data = {'core_1': core_1, 'core_2': core_2} + resource_helper.sut.irq_core_stats.return_value = (irq_data) + + build_config_file = mock.MagicMock() + build_config_file.return_value = None + + prox_irq_gen = ProxIrqGen(VNF_NAME, vnfd, 'task_id') + + startup = ["global", [["eal", "-4"]]] + master_0 = ["core 0", [["mode", "master"]]] + core_1 = ["core 1", [["mode", "irq"]]] + core_2 = ["core 2", [["mode", "irq"], ["task", "2"]]] + + prox_irq_gen.setup_helper._prox_config_data = \ + [startup, master_0, core_1, core_2] + + prox_irq_gen.scenario_helper.scenario_cfg = self.SCENARIO_CFG + prox_irq_gen.resource_helper = resource_helper + prox_irq_gen.setup_helper.build_config_file = build_config_file + + result = prox_irq_gen.collect_kpi() + self.assertDictEqual(result["collect_stats"], {}) + + result = prox_irq_gen.collect_kpi() + self.assertFalse('bucket_10' in result["collect_stats"]['core_2']) + self.assertFalse('bucket_11' in result["collect_stats"]['core_2']) + self.assertFalse('bucket_12' in result["collect_stats"]['core_2']) + self.assertEqual(result["collect_stats"]['core_2']['max_irq'], 12) diff --git a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_sample_vnf.py b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_sample_vnf.py index 43682dd07..a1802aa55 100644 --- a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_sample_vnf.py +++ b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_sample_vnf.py @@ -17,12 +17,14 @@ from copy import deepcopy import unittest import mock +import paramiko + from yardstick.common import exceptions as y_exceptions from yardstick.common import utils from yardstick.network_services.nfvi.resource import ResourceProfile from yardstick.network_services.vnf_generic.vnf.base import VnfdHelper from yardstick.network_services.vnf_generic.vnf import sample_vnf -from yardstick.network_services.vnf_generic.vnf.vnf_ssh_helper import VnfSshHelper +from yardstick.network_services.vnf_generic.vnf import vnf_ssh_helper from yardstick.network_services.vnf_generic.vnf.sample_vnf import SampleVNFDeployHelper from yardstick.network_services.vnf_generic.vnf.sample_vnf import ScenarioHelper from yardstick.network_services.vnf_generic.vnf.sample_vnf import ResourceHelper @@ -34,6 +36,7 @@ from yardstick.network_services.vnf_generic.vnf.sample_vnf import SampleVNFTraff from yardstick.network_services.vnf_generic.vnf.sample_vnf import DpdkVnfSetupEnvHelper from yardstick.tests.unit.network_services.vnf_generic.vnf import test_base from yardstick.benchmark.contexts import base as ctx_base +from yardstick import ssh class MockError(Exception): @@ -82,10 +85,11 @@ class TestVnfSshHelper(unittest.TestCase): 'virtual-interface': { 'dst_mac': '00:00:00:00:00:03', 'vpci': '0000:05:00.0', + 'dpdk_port_num': 0, + 'driver': 'i40e', 'local_ip': '152.16.100.19', 'type': 'PCI-PASSTHROUGH', 'netmask': '255.255.255.0', - 'dpdk_port_num': 0, 'bandwidth': '10 Gbps', 'dst_ip': '152.16.100.20', 'local_mac': '00:00:00:00:00:01', @@ -99,10 +103,11 @@ class TestVnfSshHelper(unittest.TestCase): 'virtual-interface': { 'dst_mac': '00:00:00:00:00:04', 'vpci': '0000:05:00.1', + 'dpdk_port_num': 1, + 'driver': 'ixgbe', 'local_ip': '152.16.40.19', 'type': 'PCI-PASSTHROUGH', 'netmask': '255.255.255.0', - 'dpdk_port_num': 1, 'bandwidth': '10 Gbps', 'dst_ip': '152.16.40.20', 'local_mac': '00:00:00:00:00:02', @@ -151,90 +156,88 @@ class TestVnfSshHelper(unittest.TestCase): } } + def setUp(self): + self.ssh_helper = vnf_ssh_helper.VnfSshHelper( + self.VNFD_0['mgmt-interface'], 'my/bin/path') + self.ssh_helper._run = mock.Mock() + def assertAll(self, iterable, message=None): self.assertTrue(all(iterable), message) def test_get_class(self): - self.assertIs(VnfSshHelper.get_class(), VnfSshHelper) + self.assertIs(vnf_ssh_helper.VnfSshHelper.get_class(), + vnf_ssh_helper.VnfSshHelper) - @mock.patch('yardstick.ssh.paramiko') + @mock.patch.object(ssh, 'paramiko') def test_copy(self, _): - ssh_helper = VnfSshHelper(self.VNFD_0['mgmt-interface'], 'my/bin/path') - ssh_helper._run = mock.Mock() - - ssh_helper.execute('ls') - self.assertTrue(ssh_helper.is_connected) - result = ssh_helper.copy() - self.assertIsInstance(result, VnfSshHelper) + self.ssh_helper.execute('ls') + self.assertTrue(self.ssh_helper.is_connected) + result = self.ssh_helper.copy() + self.assertIsInstance(result, vnf_ssh_helper.VnfSshHelper) self.assertFalse(result.is_connected) - self.assertEqual(result.bin_path, ssh_helper.bin_path) - self.assertEqual(result.host, ssh_helper.host) - self.assertEqual(result.port, ssh_helper.port) - self.assertEqual(result.user, ssh_helper.user) - self.assertEqual(result.password, ssh_helper.password) - self.assertEqual(result.key_filename, ssh_helper.key_filename) - - @mock.patch('yardstick.ssh.paramiko') + self.assertEqual(result.bin_path, self.ssh_helper.bin_path) + self.assertEqual(result.host, self.ssh_helper.host) + self.assertEqual(result.port, self.ssh_helper.port) + self.assertEqual(result.user, self.ssh_helper.user) + self.assertEqual(result.password, self.ssh_helper.password) + self.assertEqual(result.key_filename, self.ssh_helper.key_filename) + + @mock.patch.object(paramiko, 'SSHClient') def test_upload_config_file(self, mock_paramiko): - ssh_helper = VnfSshHelper(self.VNFD_0['mgmt-interface'], 'my/bin/path') - ssh_helper._run = mock.MagicMock() + self.assertFalse(self.ssh_helper.is_connected) + cfg_file = self.ssh_helper.upload_config_file('/my/prefix', 'my content') + self.assertTrue(self.ssh_helper.is_connected) + mock_paramiko.assert_called_once() + self.assertEqual(cfg_file, '/my/prefix') - self.assertFalse(ssh_helper.is_connected) - cfg_file = ssh_helper.upload_config_file('my/prefix', 'my content') - self.assertTrue(ssh_helper.is_connected) - mock_paramiko.SSHClient.assert_called_once() + @mock.patch.object(paramiko, 'SSHClient') + def test_upload_config_file_path_does_not_exist(self, mock_paramiko): + self.assertFalse(self.ssh_helper.is_connected) + cfg_file = self.ssh_helper.upload_config_file('my/prefix', 'my content') + self.assertTrue(self.ssh_helper.is_connected) + mock_paramiko.assert_called_once() self.assertTrue(cfg_file.startswith('/tmp')) - cfg_file = ssh_helper.upload_config_file('/my/prefix', 'my content') - self.assertTrue(ssh_helper.is_connected) - mock_paramiko.SSHClient.assert_called_once() - self.assertEqual(cfg_file, '/my/prefix') - def test_join_bin_path(self): - ssh_helper = VnfSshHelper(self.VNFD_0['mgmt-interface'], 'my/bin/path') - expected_start = 'my' expected_middle_list = ['bin'] expected_end = 'path' - result = ssh_helper.join_bin_path() + result = self.ssh_helper.join_bin_path() self.assertTrue(result.startswith(expected_start)) self.assertAll(middle in result for middle in expected_middle_list) self.assertTrue(result.endswith(expected_end)) expected_middle_list.append(expected_end) expected_end = 'some_file.sh' - result = ssh_helper.join_bin_path('some_file.sh') + result = self.ssh_helper.join_bin_path('some_file.sh') self.assertTrue(result.startswith(expected_start)) self.assertAll(middle in result for middle in expected_middle_list) self.assertTrue(result.endswith(expected_end)) expected_middle_list.append('some_dir') expected_end = 'some_file.sh' - result = ssh_helper.join_bin_path('some_dir', 'some_file.sh') + result = self.ssh_helper.join_bin_path('some_dir', 'some_file.sh') self.assertTrue(result.startswith(expected_start)) self.assertAll(middle in result for middle in expected_middle_list) self.assertTrue(result.endswith(expected_end)) - @mock.patch('yardstick.ssh.paramiko') - @mock.patch('yardstick.ssh.provision_tool') + @mock.patch.object(paramiko, 'SSHClient') + @mock.patch.object(ssh, 'provision_tool') def test_provision_tool(self, mock_provision_tool, mock_paramiko): - ssh_helper = VnfSshHelper(self.VNFD_0['mgmt-interface'], 'my/bin/path') - ssh_helper._run = mock.MagicMock() - - self.assertFalse(ssh_helper.is_connected) - ssh_helper.provision_tool() - self.assertTrue(ssh_helper.is_connected) - mock_paramiko.SSHClient.assert_called_once() + self.assertFalse(self.ssh_helper.is_connected) + self.ssh_helper.provision_tool() + self.assertTrue(self.ssh_helper.is_connected) + mock_paramiko.assert_called_once() mock_provision_tool.assert_called_once() - ssh_helper.provision_tool(tool_file='my_tool.sh') - self.assertTrue(ssh_helper.is_connected) - mock_paramiko.SSHClient.assert_called_once() + self.ssh_helper.provision_tool(tool_file='my_tool.sh') + self.assertTrue(self.ssh_helper.is_connected) + mock_paramiko.assert_called_once() self.assertEqual(mock_provision_tool.call_count, 2) - ssh_helper.provision_tool('tool_path', 'my_tool.sh') - self.assertTrue(ssh_helper.is_connected) - mock_paramiko.SSHClient.assert_called_once() + self.ssh_helper.provision_tool('tool_path', 'my_tool.sh') + self.assertTrue(self.ssh_helper.is_connected) + mock_paramiko.assert_called_once() self.assertEqual(mock_provision_tool.call_count, 3) diff --git a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_tg_rfc2544_ixia.py b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_tg_rfc2544_ixia.py index 741201fdb..7247ee8be 100644 --- a/yardstick/tests/unit/network_services/vnf_generic/vnf/test_tg_rfc2544_ixia.py +++ b/yardstick/tests/unit/network_services/vnf_generic/vnf/test_tg_rfc2544_ixia.py @@ -17,8 +17,11 @@ import os import mock import six import unittest +import ipaddress +from collections import OrderedDict from yardstick.common import utils +from yardstick.common import exceptions from yardstick.benchmark import contexts from yardstick.benchmark.contexts import base as ctx_base from yardstick.network_services.libs.ixia_libs.ixnet import ixnet_api @@ -49,12 +52,43 @@ class TestIxiaResourceHelper(unittest.TestCase): mock.Mock(), MyRfcHelper) self.assertIsInstance(ixia_resource_helper.rfc_helper, MyRfcHelper) + def test__init_ix_scenario(self): + mock_scenario = mock.Mock() + mock_scenario_helper = mock.Mock() + mock_scenario_helper.scenario_cfg = {'ixia_config': 'TestScenario', + 'options': 'scenario_options'} + mock_setup_helper = mock.Mock(scenario_helper=mock_scenario_helper) + ixia_resource_helper = tg_rfc2544_ixia.IxiaResourceHelper(mock_setup_helper) + ixia_resource_helper._ixia_scenarios = {'TestScenario': mock_scenario} + ixia_resource_helper.client = 'client' + ixia_resource_helper.context_cfg = 'context' + ixia_resource_helper._init_ix_scenario() + mock_scenario.assert_called_once_with('client', 'context', 'scenario_options') + + def test__init_ix_scenario_not_supported_cfg_type(self): + mock_scenario_helper = mock.Mock() + mock_scenario_helper.scenario_cfg = {'ixia_config': 'FakeScenario', + 'options': 'scenario_options'} + mock_setup_helper = mock.Mock(scenario_helper=mock_scenario_helper) + ixia_resource_helper = tg_rfc2544_ixia.IxiaResourceHelper(mock_setup_helper) + ixia_resource_helper._ixia_scenarios = {'TestScenario': mock.Mock()} + with self.assertRaises(RuntimeError): + ixia_resource_helper._init_ix_scenario() + + @mock.patch.object(tg_rfc2544_ixia.IxiaResourceHelper, '_init_ix_scenario') + def test_setup(self, mock__init_ix_scenario): + ixia_resource_helper = tg_rfc2544_ixia.IxiaResourceHelper(mock.Mock()) + ixia_resource_helper.setup() + mock__init_ix_scenario.assert_called_once() + def test_stop_collect_with_client(self): mock_client = mock.Mock() ixia_resource_helper = tg_rfc2544_ixia.IxiaResourceHelper(mock.Mock()) ixia_resource_helper.client = mock_client + ixia_resource_helper._ix_scenario = mock.Mock() ixia_resource_helper.stop_collect() self.assertEqual(1, ixia_resource_helper._terminated.value) + ixia_resource_helper._ix_scenario.stop_protocols.assert_called_once() def test_run_traffic(self): mock_tprofile = mock.Mock() @@ -63,6 +97,7 @@ class TestIxiaResourceHelper(unittest.TestCase): ixia_rhelper = tg_rfc2544_ixia.IxiaResourceHelper(mock.Mock()) ixia_rhelper.rfc_helper = mock.Mock() ixia_rhelper.vnfd_helper = mock.Mock() + ixia_rhelper._ix_scenario = mock.Mock() ixia_rhelper.vnfd_helper.port_pairs.all_ports = [] with mock.patch.object(ixia_rhelper, 'generate_samples'), \ mock.patch.object(ixia_rhelper, '_build_ports'), \ @@ -71,6 +106,7 @@ class TestIxiaResourceHelper(unittest.TestCase): ixia_rhelper.run_traffic(mock_tprofile) self.assertEqual('fake_samples', ixia_rhelper._queue.get()) + mock_tprofile.update_traffic_profile.assert_called_once() @mock.patch.object(tg_rfc2544_ixia, 'ixnet_api') @@ -261,8 +297,8 @@ class TestIXIATrafficGen(unittest.TestCase): ssh_mock.execute = \ mock.Mock(return_value=(0, "", "")) ssh.from_node.return_value = ssh_mock - ixnet_traffic_gen = tg_rfc2544_ixia.IxiaTrafficGen(NAME, vnfd, - 'task_id') + ixnet_traffic_gen = tg_rfc2544_ixia.IxiaTrafficGen( + NAME, vnfd, 'task_id', resource_helper_type=mock.Mock()) ixnet_traffic_gen._terminated = mock.MagicMock() ixnet_traffic_gen._terminated.value = 0 ixnet_traffic_gen._ixia_traffic_gen = mock.MagicMock() @@ -360,6 +396,7 @@ class TestIXIATrafficGen(unittest.TestCase): sut.resource_helper.client_started = mock.MagicMock() sut.resource_helper.client_started.value = 1 sut.resource_helper.rfc_helper.iteration.value = 11 + sut.resource_helper._ix_scenario = mock.Mock() sut.scenario_helper.scenario_cfg = { 'options': { @@ -392,3 +429,532 @@ class TestIXIATrafficGen(unittest.TestCase): self.assertIsNone(result) _traffic_runner() + + +class TestIxiaBasicScenario(unittest.TestCase): + def setUp(self): + self._mock_IxNextgen = mock.patch.object(ixnet_api, 'IxNextgen') + self.mock_IxNextgen = self._mock_IxNextgen.start() + self.context_cfg = mock.Mock() + self.ixia_cfg = mock.Mock() + self.scenario = tg_rfc2544_ixia.IxiaBasicScenario(self.mock_IxNextgen, + self.context_cfg, + self.ixia_cfg) + self.addCleanup(self._stop_mocks) + + def _stop_mocks(self): + self._mock_IxNextgen.stop() + + def test___init___(self): + self.assertIsInstance(self.scenario, tg_rfc2544_ixia.IxiaBasicScenario) + self.assertEqual(self.scenario.client, self.mock_IxNextgen) + + def test_create_traffic_model(self): + self.mock_IxNextgen.get_vports.return_value = [1, 2, 3, 4] + self.scenario.create_traffic_model() + self.scenario.client.get_vports.assert_called_once() + self.scenario.client.create_traffic_model.assert_called_once_with([1, 3], [2, 4]) + + def test_apply_config(self): + self.assertIsNone(self.scenario.apply_config()) + + def test_run_protocols(self): + self.assertIsNone(self.scenario.run_protocols()) + + def test_stop_protocols(self): + self.assertIsNone(self.scenario.stop_protocols()) + + +class TestIxiaL3Scenario(TestIxiaBasicScenario): + IXIA_CFG = { + 'flow': { + 'src_ip': ['192.168.0.1-192.168.0.50'], + 'dst_ip': ['192.168.1.1-192.168.1.150'] + } + } + + CONTEXT_CFG = { + 'nodes': { + 'tg__0': { + 'role': 'IxNet', + 'interfaces': { + 'xe0': { + 'vld_id': 'uplink_0', + 'local_ip': '10.1.1.1', + 'local_mac': 'aa:bb:cc:dd:ee:ff', + 'ifname': 'xe0' + }, + 'xe1': { + 'vld_id': 'downlink_0', + 'local_ip': '20.2.2.2', + 'local_mac': 'bb:bb:cc:dd:ee:ee', + 'ifname': 'xe1' + } + }, + 'routing_table': [{ + 'network': "152.16.100.20", + 'netmask': '255.255.0.0', + 'gateway': '152.16.100.21', + 'if': 'xe0' + }] + } + } + } + + def setUp(self): + super(TestIxiaL3Scenario, self).setUp() + self.ixia_cfg = self.IXIA_CFG + self.context_cfg = self.CONTEXT_CFG + self.scenario = tg_rfc2544_ixia.IxiaL3Scenario(self.mock_IxNextgen, + self.context_cfg, + self.ixia_cfg) + + def test___init___(self): + self.assertIsInstance(self.scenario, tg_rfc2544_ixia.IxiaL3Scenario) + self.assertEqual(self.scenario.client, self.mock_IxNextgen) + + def test_create_traffic_model(self): + self.mock_IxNextgen.get_vports.return_value = ['1', '2'] + self.scenario.create_traffic_model() + self.scenario.client.get_vports.assert_called_once() + self.scenario.client.create_ipv4_traffic_model.\ + assert_called_once_with(['1/protocols/static'], + ['2/protocols/static']) + + def test_apply_config(self): + self.scenario._add_interfaces = mock.Mock() + self.scenario._add_static_ips = mock.Mock() + self.assertIsNone(self.scenario.apply_config()) + + def test__add_static(self): + self.mock_IxNextgen.get_vports.return_value = ['1', '2'] + self.mock_IxNextgen.get_static_interface.side_effect = ['intf1', + 'intf2'] + + self.scenario._add_static_ips() + + self.mock_IxNextgen.get_static_interface.assert_any_call('1') + self.mock_IxNextgen.get_static_interface.assert_any_call('2') + + self.scenario.client.add_static_ipv4.assert_any_call( + 'intf1', '1', '192.168.0.1', 49) + self.scenario.client.add_static_ipv4.assert_any_call( + 'intf2', '2', '192.168.1.1', 149) + + def test__add_interfaces(self): + self.mock_IxNextgen.get_vports.return_value = ['1', '2'] + + self.scenario._add_interfaces() + + self.mock_IxNextgen.add_interface.assert_any_call('1', + '10.1.1.1', + 'aa:bb:cc:dd:ee:ff', + '152.16.100.21') + self.mock_IxNextgen.add_interface.assert_any_call('2', + '20.2.2.2', + 'bb:bb:cc:dd:ee:ee', + None) + + +class TestIxiaPppoeClientScenario(unittest.TestCase): + + IXIA_CFG = { + 'pppoe_client': { + 'sessions_per_port': 4, + 'sessions_per_svlan': 1, + 's_vlan': 10, + 'c_vlan': 20, + 'ip': ['10.3.3.1', '10.4.4.1'] + }, + 'ipv4_client': { + 'sessions_per_port': 1, + 'sessions_per_vlan': 1, + 'vlan': 101, + 'gateway_ip': ['10.1.1.1', '10.2.2.1'], + 'ip': ['10.1.1.1', '10.2.2.1'], + 'prefix': ['24', '24'] + } + } + + CONTEXT_CFG = { + 'nodes': {'tg__0': { + 'interfaces': {'xe0': { + 'local_ip': '10.1.1.1', + 'netmask': '255.255.255.0' + }}}}} + + def setUp(self): + self._mock_IxNextgen = mock.patch.object(ixnet_api, 'IxNextgen') + self.mock_IxNextgen = self._mock_IxNextgen.start() + self.scenario = tg_rfc2544_ixia.IxiaPppoeClientScenario( + self.mock_IxNextgen, self.CONTEXT_CFG, self.IXIA_CFG) + tg_rfc2544_ixia.WAIT_PROTOCOLS_STARTED = 2 + self.addCleanup(self._stop_mocks) + + def _stop_mocks(self): + self._mock_IxNextgen.stop() + + def test___init___(self): + self.assertIsInstance(self.scenario, tg_rfc2544_ixia.IxiaPppoeClientScenario) + self.assertEqual(self.scenario.client, self.mock_IxNextgen) + + @mock.patch.object(tg_rfc2544_ixia.IxiaPppoeClientScenario, + '_fill_ixia_config') + @mock.patch.object(tg_rfc2544_ixia.IxiaPppoeClientScenario, + '_apply_access_network_config') + @mock.patch.object(tg_rfc2544_ixia.IxiaPppoeClientScenario, + '_apply_core_network_config') + def test_apply_config(self, mock_apply_core_net_cfg, + mock_apply_access_net_cfg, + mock_fill_ixia_config): + self.mock_IxNextgen.get_vports.return_value = [1, 2, 3, 4] + self.scenario.apply_config() + self.scenario.client.get_vports.assert_called_once() + self.assertEqual(self.scenario._uplink_vports, [1, 3]) + self.assertEqual(self.scenario._downlink_vports, [2, 4]) + mock_fill_ixia_config.assert_called_once() + mock_apply_core_net_cfg.assert_called_once() + mock_apply_access_net_cfg.assert_called_once() + + @mock.patch.object(tg_rfc2544_ixia.IxiaPppoeClientScenario, + '_get_endpoints_src_dst_id_pairs') + @mock.patch.object(tg_rfc2544_ixia.IxiaPppoeClientScenario, + '_get_endpoints_src_dst_obj_pairs') + def test_create_traffic_model(self, mock_obj_pairs, mock_id_pairs): + uplink_endpoints = ['group1', 'group2'] + downlink_endpoints = ['group3', 'group3'] + mock_id_pairs.return_value = ['xe0', 'xe1', 'xe0', 'xe1'] + mock_obj_pairs.return_value = ['group1', 'group3', 'group2', 'group3'] + mock_tp = mock.Mock() + mock_tp.full_profile = {'uplink_0': 'data', + 'downlink_0': 'data', + 'uplink_1': 'data', + 'downlink_1': 'data' + } + self.scenario.create_traffic_model(mock_tp) + mock_id_pairs.assert_called_once_with(mock_tp.full_profile) + mock_obj_pairs.assert_called_once_with(['xe0', 'xe1', 'xe0', 'xe1']) + self.scenario.client.create_ipv4_traffic_model.assert_called_once_with( + uplink_endpoints, downlink_endpoints) + + def test__get_endpoints_src_dst_id_pairs(self): + full_tp = OrderedDict([ + ('uplink_0', {'ipv4': {'port': 'xe0'}}), + ('downlink_0', {'ipv4': {'port': 'xe1'}}), + ('uplink_1', {'ipv4': {'port': 'xe0'}}), + ('downlink_1', {'ipv4': {'port': 'xe3'}})]) + endpoints_src_dst_pairs = ['xe0', 'xe1', 'xe0', 'xe3'] + res = self.scenario._get_endpoints_src_dst_id_pairs(full_tp) + self.assertEqual(res, endpoints_src_dst_pairs) + + def test__get_endpoints_src_dst_id_pairs_wrong_flows_number(self): + full_tp = OrderedDict([ + ('uplink_0', {'ipv4': {'port': 'xe0'}}), + ('downlink_0', {'ipv4': {'port': 'xe1'}}), + ('uplink_1', {'ipv4': {'port': 'xe0'}})]) + with self.assertRaises(RuntimeError): + self.scenario._get_endpoints_src_dst_id_pairs(full_tp) + + def test__get_endpoints_src_dst_id_pairs_no_port_key(self): + full_tp = OrderedDict([ + ('uplink_0', {'ipv4': {'id': 1}}), + ('downlink_0', {'ipv4': {'id': 2}})]) + self.assertEqual( + self.scenario._get_endpoints_src_dst_id_pairs(full_tp), []) + + def test__get_endpoints_src_dst_obj_pairs_tp_with_port_key(self): + endpoints_id_pairs = ['xe0', 'xe1', + 'xe0', 'xe1', + 'xe0', 'xe3', + 'xe0', 'xe3'] + ixia_cfg = { + 'pppoe_client': { + 'sessions_per_port': 4, + 'sessions_per_svlan': 1 + }, + 'flow': { + 'src_ip': [{'tg__0': 'xe0'}, {'tg__0': 'xe2'}], + 'dst_ip': [{'tg__0': 'xe1'}, {'tg__0': 'xe3'}] + } + } + + expected_result = ['tp1_dg1', 'tp3_dg1', 'tp1_dg2', 'tp3_dg1', + 'tp1_dg3', 'tp4_dg1', 'tp1_dg4', 'tp4_dg1'] + + self.scenario._ixia_cfg = ixia_cfg + self.scenario._access_topologies = ['topology1', 'topology2'] + self.scenario._core_topologies = ['topology3', 'topology4'] + self.mock_IxNextgen.get_topology_device_groups.side_effect = \ + [['tp1_dg1', 'tp1_dg2', 'tp1_dg3', 'tp1_dg4'], + ['tp2_dg1', 'tp2_dg2', 'tp2_dg3', 'tp2_dg4'], + ['tp3_dg1'], + ['tp4_dg1']] + res = self.scenario._get_endpoints_src_dst_obj_pairs( + endpoints_id_pairs) + self.assertEqual(res, expected_result) + + def test__get_endpoints_src_dst_obj_pairs_default_flows_mapping(self): + endpoints_id_pairs = [] + ixia_cfg = { + 'pppoe_client': { + 'sessions_per_port': 4, + 'sessions_per_svlan': 1 + }, + 'flow': { + 'src_ip': [{'tg__0': 'xe0'}, {'tg__0': 'xe2'}], + 'dst_ip': [{'tg__0': 'xe1'}, {'tg__0': 'xe3'}] + } + } + + expected_result = ['tp1_dg1', 'tp3_dg1', 'tp1_dg2', 'tp3_dg1', + 'tp1_dg3', 'tp3_dg1', 'tp1_dg4', 'tp3_dg1', + 'tp2_dg1', 'tp4_dg1', 'tp2_dg2', 'tp4_dg1', + 'tp2_dg3', 'tp4_dg1', 'tp2_dg4', 'tp4_dg1'] + + self.scenario._ixia_cfg = ixia_cfg + self.scenario._access_topologies = ['topology1', 'topology2'] + self.scenario._core_topologies = ['topology3', 'topology4'] + self.mock_IxNextgen.get_topology_device_groups.side_effect = \ + [['tp1_dg1', 'tp1_dg2', 'tp1_dg3', 'tp1_dg4'], + ['tp2_dg1', 'tp2_dg2', 'tp2_dg3', 'tp2_dg4'], + ['tp3_dg1'], + ['tp4_dg1']] + res = self.scenario._get_endpoints_src_dst_obj_pairs( + endpoints_id_pairs) + self.assertEqual(res, expected_result) + + def test_run_protocols(self): + self.scenario.client.is_protocols_running.return_value = True + self.scenario.run_protocols() + self.scenario.client.start_protocols.assert_called_once() + + def test_run_protocols_timeout_exception(self): + self.scenario.client.is_protocols_running.return_value = False + with self.assertRaises(exceptions.WaitTimeout): + self.scenario.run_protocols() + self.scenario.client.start_protocols.assert_called_once() + + def test_stop_protocols(self): + self.scenario.stop_protocols() + self.scenario.client.stop_protocols.assert_called_once() + + def test__get_intf_addr_str_type_input(self): + intf = '192.168.10.2/24' + ip, mask = self.scenario._get_intf_addr(intf) + self.assertEqual(ip, '192.168.10.2') + self.assertEqual(mask, 24) + + def test__get_intf_addr_dict_type_input(self): + intf = {'tg__0': 'xe0'} + ip, mask = self.scenario._get_intf_addr(intf) + self.assertEqual(ip, '10.1.1.1') + self.assertEqual(mask, 24) + + @mock.patch.object(tg_rfc2544_ixia.IxiaPppoeClientScenario, '_get_intf_addr') + def test__fill_ixia_config(self, mock_get_intf_addr): + + ixia_cfg = { + 'pppoe_client': { + 'sessions_per_port': 4, + 'sessions_per_svlan': 1, + 's_vlan': 10, + 'c_vlan': 20, + 'ip': ['10.3.3.1/24', '10.4.4.1/24'] + }, + 'ipv4_client': { + 'sessions_per_port': 1, + 'sessions_per_vlan': 1, + 'vlan': 101, + 'gateway_ip': ['10.1.1.1/24', '10.2.2.1/24'], + 'ip': ['10.1.1.1/24', '10.2.2.1/24'] + } + } + + mock_get_intf_addr.side_effect = [ + ('10.3.3.1', '24'), + ('10.4.4.1', '24'), + ('10.1.1.1', '24'), + ('10.2.2.1', '24'), + ('10.1.1.1', '24'), + ('10.2.2.1', '24') + ] + self.scenario._ixia_cfg = ixia_cfg + self.scenario._fill_ixia_config() + self.assertEqual(mock_get_intf_addr.call_count, 6) + self.assertEqual(self.scenario._ixia_cfg['pppoe_client']['ip'], + ['10.3.3.1', '10.4.4.1']) + self.assertEqual(self.scenario._ixia_cfg['ipv4_client']['ip'], + ['10.1.1.1', '10.2.2.1']) + self.assertEqual(self.scenario._ixia_cfg['ipv4_client']['prefix'], + ['24', '24']) + + @mock.patch('yardstick.network_services.libs.ixia_libs.ixnet.ixnet_api.Vlan') + def test__apply_access_network_config_pap_auth(self, mock_vlan): + _ixia_cfg = { + 'pppoe_client': { + 'sessions_per_port': 4, + 'sessions_per_svlan': 1, + 's_vlan': 10, + 'c_vlan': 20, + 'pap_user': 'test_pap', + 'pap_password': 'pap' + }} + pap_user = _ixia_cfg['pppoe_client']['pap_user'] + pap_passwd = _ixia_cfg['pppoe_client']['pap_password'] + self.scenario._ixia_cfg = _ixia_cfg + self.scenario._uplink_vports = [0, 2] + self.scenario.client.add_topology.side_effect = ['Topology 1', 'Topology 2'] + self.scenario.client.add_device_group.side_effect = ['Dg1', 'Dg2', 'Dg3', + 'Dg4', 'Dg5', 'Dg6', + 'Dg7', 'Dg8'] + self.scenario.client.add_ethernet.side_effect = ['Eth1', 'Eth2', 'Eth3', + 'Eth4', 'Eth5', 'Eth6', + 'Eth7', 'Eth8'] + self.scenario._apply_access_network_config() + self.assertEqual(self.scenario.client.add_topology.call_count, 2) + self.assertEqual(self.scenario.client.add_device_group.call_count, 8) + self.assertEqual(self.scenario.client.add_ethernet.call_count, 8) + self.assertEqual(mock_vlan.call_count, 16) + self.assertEqual(self.scenario.client.add_vlans.call_count, 8) + self.assertEqual(self.scenario.client.add_pppox_client.call_count, 8) + self.scenario.client.add_topology.assert_has_calls([ + mock.call('Topology access 0', 0), + mock.call('Topology access 1', 2) + ]) + self.scenario.client.add_device_group.assert_has_calls([ + mock.call('Topology 1', 'SVLAN 10', 1), + mock.call('Topology 1', 'SVLAN 11', 1), + mock.call('Topology 1', 'SVLAN 12', 1), + mock.call('Topology 1', 'SVLAN 13', 1), + mock.call('Topology 2', 'SVLAN 14', 1), + mock.call('Topology 2', 'SVLAN 15', 1), + mock.call('Topology 2', 'SVLAN 16', 1), + mock.call('Topology 2', 'SVLAN 17', 1) + ]) + self.scenario.client.add_ethernet.assert_has_calls([ + mock.call('Dg1', 'Ethernet'), + mock.call('Dg2', 'Ethernet'), + mock.call('Dg3', 'Ethernet'), + mock.call('Dg4', 'Ethernet'), + mock.call('Dg5', 'Ethernet'), + mock.call('Dg6', 'Ethernet'), + mock.call('Dg7', 'Ethernet'), + mock.call('Dg8', 'Ethernet') + ]) + mock_vlan.assert_has_calls([ + mock.call(vlan_id=10), + mock.call(vlan_id=20, vlan_id_step=1), + mock.call(vlan_id=11), + mock.call(vlan_id=20, vlan_id_step=1), + mock.call(vlan_id=12), + mock.call(vlan_id=20, vlan_id_step=1), + mock.call(vlan_id=13), + mock.call(vlan_id=20, vlan_id_step=1), + mock.call(vlan_id=14), + mock.call(vlan_id=20, vlan_id_step=1), + mock.call(vlan_id=15), + mock.call(vlan_id=20, vlan_id_step=1), + mock.call(vlan_id=16), + mock.call(vlan_id=20, vlan_id_step=1), + mock.call(vlan_id=17), + mock.call(vlan_id=20, vlan_id_step=1) + ]) + self.scenario.client.add_pppox_client.assert_has_calls([ + mock.call('Eth1', 'pap', pap_user, pap_passwd), + mock.call('Eth2', 'pap', pap_user, pap_passwd), + mock.call('Eth3', 'pap', pap_user, pap_passwd), + mock.call('Eth4', 'pap', pap_user, pap_passwd), + mock.call('Eth5', 'pap', pap_user, pap_passwd), + mock.call('Eth6', 'pap', pap_user, pap_passwd), + mock.call('Eth7', 'pap', pap_user, pap_passwd), + mock.call('Eth8', 'pap', pap_user, pap_passwd) + ]) + + def test__apply_access_network_config_chap_auth(self): + _ixia_cfg = { + 'pppoe_client': { + 'sessions_per_port': 4, + 'sessions_per_svlan': 1, + 's_vlan': 10, + 'c_vlan': 20, + 'chap_user': 'test_chap', + 'chap_password': 'chap' + }} + chap_user = _ixia_cfg['pppoe_client']['chap_user'] + chap_passwd = _ixia_cfg['pppoe_client']['chap_password'] + self.scenario._ixia_cfg = _ixia_cfg + self.scenario._uplink_vports = [0, 2] + self.scenario.client.add_ethernet.side_effect = ['Eth1', 'Eth2', 'Eth3', + 'Eth4', 'Eth5', 'Eth6', + 'Eth7', 'Eth8'] + self.scenario._apply_access_network_config() + self.assertEqual(self.scenario.client.add_pppox_client.call_count, 8) + self.scenario.client.add_pppox_client.assert_has_calls([ + mock.call('Eth1', 'chap', chap_user, chap_passwd), + mock.call('Eth2', 'chap', chap_user, chap_passwd), + mock.call('Eth3', 'chap', chap_user, chap_passwd), + mock.call('Eth4', 'chap', chap_user, chap_passwd), + mock.call('Eth5', 'chap', chap_user, chap_passwd), + mock.call('Eth6', 'chap', chap_user, chap_passwd), + mock.call('Eth7', 'chap', chap_user, chap_passwd), + mock.call('Eth8', 'chap', chap_user, chap_passwd) + ]) + + @mock.patch('yardstick.network_services.libs.ixia_libs.ixnet.ixnet_api.Vlan') + def test__apply_core_network_config_no_bgp_proto(self, mock_vlan): + self.scenario._downlink_vports = [1, 3] + self.scenario.client.add_topology.side_effect = ['Topology 1', 'Topology 2'] + self.scenario.client.add_device_group.side_effect = ['Dg1', 'Dg2'] + self.scenario.client.add_ethernet.side_effect = ['Eth1', 'Eth2'] + self.scenario._apply_core_network_config() + self.assertEqual(self.scenario.client.add_topology.call_count, 2) + self.assertEqual(self.scenario.client.add_device_group.call_count, 2) + self.assertEqual(self.scenario.client.add_ethernet.call_count, 2) + self.assertEqual(mock_vlan.call_count, 2) + self.assertEqual(self.scenario.client.add_vlans.call_count, 2) + self.assertEqual(self.scenario.client.add_ipv4.call_count, 2) + self.scenario.client.add_topology.assert_has_calls([ + mock.call('Topology core 0', 1), + mock.call('Topology core 1', 3) + ]) + self.scenario.client.add_device_group.assert_has_calls([ + mock.call('Topology 1', 'Core port 0', 1), + mock.call('Topology 2', 'Core port 1', 1) + ]) + self.scenario.client.add_ethernet.assert_has_calls([ + mock.call('Dg1', 'Ethernet'), + mock.call('Dg2', 'Ethernet') + ]) + mock_vlan.assert_has_calls([ + mock.call(vlan_id=101), + mock.call(vlan_id=102) + ]) + self.scenario.client.add_ipv4.assert_has_calls([ + mock.call('Eth1', name='ipv4', addr=ipaddress.IPv4Address('10.1.1.2'), + addr_step='0.0.0.1', prefix='24', gateway='10.1.1.1'), + mock.call('Eth2', name='ipv4', addr=ipaddress.IPv4Address('10.2.2.2'), + addr_step='0.0.0.1', prefix='24', gateway='10.2.2.1') + ]) + self.scenario.client.add_bgp.assert_not_called() + + def test__apply_core_network_config_with_bgp_proto(self): + bgp_params = { + 'bgp': { + 'bgp_type': 'external', + 'dut_ip': '10.0.0.1', + 'as_number': 65000 + } + } + self.scenario._ixia_cfg['ipv4_client'].update(bgp_params) + self.scenario._downlink_vports = [1, 3] + self.scenario.client.add_ipv4.side_effect = ['ipv4_1', 'ipv4_2'] + self.scenario._apply_core_network_config() + self.assertEqual(self.scenario.client.add_bgp.call_count, 2) + self.scenario.client.add_bgp.assert_has_calls([ + mock.call('ipv4_1', dut_ip=bgp_params["bgp"]["dut_ip"], + local_as=bgp_params["bgp"]["as_number"], + bgp_type=bgp_params["bgp"]["bgp_type"]), + mock.call('ipv4_2', dut_ip=bgp_params["bgp"]["dut_ip"], + local_as=bgp_params["bgp"]["as_number"], + bgp_type=bgp_params["bgp"]["bgp_type"]) + ]) |